import { createHashRouter } from "react-router-dom"; import DashboardLayout from "./pages/DashboardLayout"; import Home from "./pages/domains/Home"; import Edit from "./pages/domains/Edit"; import Access from "./pages/access/Access"; import History from "./pages/history/History"; import Login from "./pages/login/Login"; import LoginLayout from "./pages/LoginLayout"; export const router = createHashRouter([ { path: "/", element: , children: [ { path: "/", element: , }, { path: "/edit", element: , }, { path: "/access", element: , }, { path: "/history", element: , }, ], }, { path: "/login", element: , children: [ { path: "/login", element: , }, ], }, { path: "/about", element:
About
, }, ]);