Created the Home.jsx page

This commit is contained in:
2023-07-07 01:10:23 +02:00
parent c092db8f27
commit 719075907d

9
src/pages/Home/Home.jsx Normal file
View File

@ -0,0 +1,9 @@
import Header from "@/pages/Home/sections/Header";
export const Home = () => {
return (
<>
<Header />
</>
)
}