first commit

This commit is contained in:
dev-chiefworks
2024-01-10 11:05:21 -05:00
commit 2ce13271d8
1398 changed files with 91003 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
'use client'
import React from "react";
const FormEvent = () => {
const handleSubmit = (event) => {
event.preventDefault();
};
return (
<form onClick={handleSubmit}>
<input type="text" placeholder="Email address" />
<button>Start Trial</button>
</form>
);
};
export default FormEvent;