Skip to content

Commit

Permalink
Merge pull request #52 from SELab-2/groups
Browse files Browse the repository at this point in the history
opdracht student, leerkracht en groepen pagina statische versie
  • Loading branch information
Bendemeurichy authored Mar 13, 2024
2 parents 1064a49 + 6ffeac2 commit 548e8a3
Show file tree
Hide file tree
Showing 8 changed files with 518 additions and 40 deletions.
8 changes: 8 additions & 0 deletions frontend/frontend/.vite/deps/_metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"hash": "ea10a7bd",
"configHash": "baf76694",
"lockfileHash": "e3b0c442",
"browserHash": "89947c23",
"optimized": {},
"chunks": {}
}
3 changes: 3 additions & 0 deletions frontend/frontend/.vite/deps/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"type": "module"
}
134 changes: 103 additions & 31 deletions frontend/frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions frontend/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@
"preview": "vite preview"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.8",
"@mui/icons-material": "^5.15.11",
"@mui/material": "^5.15.11",
"@mui/material": "^5.15.12",
"@mui/x-date-pickers": "^6.19.6",
"axios": "^1.6.7",
"dayjs": "^1.11.10",
"i18next": "^23.10.0",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-http-backend": "^2.5.0",
Expand Down
33 changes: 26 additions & 7 deletions frontend/frontend/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,36 @@ import ErrorPage from "./pages/ErrorPage.tsx";

import {MainPage} from "./pages/mainPage/MainPage.tsx";
import {Helmet, HelmetProvider} from "react-helmet-async";
import { SubjectsStudentPage } from "./pages/subjects_page/SubjectsStudentPage.tsx";
import { AssignmentStudentPage } from "./pages/assignmentPage/assignmentStudentPage";
import { AssignmentTeacherPage } from "./pages/assignmentPage/assignmentTeacherPage.tsx";
import { GroupsPage } from "./pages/groupsPage/groupsPage.tsx";
import {SubjectsStudentPage} from "./pages/subjects_page/SubjectsStudentPage.tsx";
import {SimpleRequestsPage} from "./pages/simpleRequestsPage/SimpleRequestsPage.tsx";


const router = createBrowserRouter([
{
path: "/",
element: <MainPage/>,
errorElement: <ErrorPage/>,
},
{
{
path: "/",
element: <MainPage />,
errorElement: <ErrorPage />,
},
{
path: "/subjects_student",
element: <SubjectsStudentPage />,
},
{
path: "/assignment_student",
element: <AssignmentStudentPage />,
},
{
path: "/assignment_teacher",
element: <AssignmentTeacherPage/>,
},
{
path: "/groups",
element: <GroupsPage/>,
},
{
path: "/subjects_student",
element: <SubjectsStudentPage/>,
},
Expand Down
Loading

0 comments on commit 548e8a3

Please sign in to comment.