p6/8 done

This commit is contained in:
2026-04-14 23:29:51 +10:00
parent d7c5eedee5
commit 189449a28a
5 changed files with 184 additions and 9 deletions

View File

@@ -6,9 +6,10 @@ import {
RouterProvider,
} from "react-router-dom";
import List from "./list/List";
import Main from "./main/Main";
import Building from "./building/Building";
import List from "./list/List";
import Main from "./main/Main";
import Building from "./building/Building";
import Chart from "./chart/Chart";
const router = createBrowserRouter([
{
@@ -19,6 +20,10 @@ const router = createBrowserRouter([
path: "/list",
element: <List />,
},
{
path: "/chart",
element: <Chart />,
},
{
path: "/building/:id",
element: <Building />,