added table page

This commit is contained in:
2026-04-16 00:52:01 +10:00
parent e5147e90b2
commit 93a95eab5a
11 changed files with 789 additions and 10 deletions

View File

@@ -6,8 +6,8 @@ import {
RouterProvider,
} from "react-router-dom";
// import List from "./list/List";
// import Chart from "./chart/Chart";
import List from "./list/List";
import Chart from "./chart/Chart";
import Main from "./main/Main";
import ProjectDetails from "./projectDetails/ProjectDetails";
@@ -22,14 +22,14 @@ const router = createBrowserRouter([
path: "/project-details/:id",
element: <ProjectDetails />,
},
// {
// path: "/chart",
// element: <Chart />,
// },
// {
// path: "/building/:id",
// element: <Building />,
// },
{
path: "/list",
element: <List />,
},
{
path: "/chart",
element: <Chart />,
},
]);