Files
dev-chiefworks 2ce13271d8 first commit
2024-01-10 11:05:21 -05:00

22 lines
432 B
React

'use client'
import Image from "next/image";
import React from "react";
const BlogSidebarForm = () => {
const handleSubmit = (event) => {
event.preventDefault();
};
return (
<form onClick={handleSubmit}>
<input type="text" placeholder="Search" />
<button>
<Image width="18" height="20" src="/images/icon/50.svg" alt="icon" />
</button>
</form>
);
};
export default BlogSidebarForm;