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