Updated the routes index.jsx

This commit is contained in:
Mathias Wagner 2023-08-02 15:04:59 +02:00
parent 22a08dcd0d
commit 8d5fb382b4
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -10,11 +10,12 @@ import {
WorkspacePremium
} from "@mui/icons-material";
import Info from "@/states/Dashboard/pages/Info";
import Statistic from "@/states/Dashboard/pages/Statistic";
export const routes = [
{path: "/", element: <Home/>},
{path: "/support", element: <h1>Support</h1>},
{path: "/projects/:projectId/stats", element: <h1>Statistik</h1>},
{path: "/projects/:projectId/stats", element: <Statistic />},
{path: "/projects/:projectId/licenses", element: <h1>Lizenzen</h1>},
{path: "/projects/:projectId/permissions", element: <h1>Berechtigungen</h1>},
{path: "/projects/:projectId/groups", element: <h1>Gruppen</h1>},