initial commit

This commit is contained in:
Dayamond
2025-10-13 16:42:16 +02:00
commit 4004517855
14 changed files with 2016 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { createBrowserRouter } from "react-router";
import HomePage from "./pages/Home/HomePage";
const router = createBrowserRouter([
{
path: "/",
children: [
{
path: "/",
Component: HomePage,
}
]
}
])
export default router;