first commit
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
'use client'
|
||||
|
||||
|
||||
import Image from "next/image";
|
||||
import React from "react";
|
||||
|
||||
const FormEvent = () => {
|
||||
const handleSubmit = (event) => {
|
||||
event.preventDefault();
|
||||
};
|
||||
return (
|
||||
<form onClick={handleSubmit}>
|
||||
<input type="text" placeholder="Search Somthing.." />
|
||||
{/* serarch field */}
|
||||
|
||||
<button>
|
||||
<Image width="27" height="23" src="/images/icon/54.svg" alt="icon" />
|
||||
</button>
|
||||
{/* Search button */}
|
||||
|
||||
<select className="form-control" id="exampleFormControlSelect1">
|
||||
<option>All</option>
|
||||
<option>Layout</option>
|
||||
<option>API</option>
|
||||
<option>Doc</option>
|
||||
</select>
|
||||
{/* End select menu */}
|
||||
</form>
|
||||
);
|
||||
};
|
||||
|
||||
export default FormEvent;
|
||||
Reference in New Issue
Block a user