Integrated the Licenses page into the routes index.jsx

This commit is contained in:
Mathias Wagner 2023-09-10 16:09:10 +02:00
parent c71f1bf63d
commit 72fb351dcf
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

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