first commit
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user