Skip to content

Commit

Permalink
Implement student dashboard (ui-only for now).
Browse files Browse the repository at this point in the history
Fix exam search not passing sample parameter.

Signed-off-by: Aliwoto <aminnimaj@gmail.com>
  • Loading branch information
ALiwoto committed Feb 4, 2025
1 parent 972e1c1 commit b371137
Show file tree
Hide file tree
Showing 14 changed files with 667 additions and 7 deletions.
290 changes: 290 additions & 0 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.0",
"react-scripts": "^5.0.1",
"recharts": "^2.15.1",
"styled-components": "^6.1.12",
"typescript": "^5.5.4",
"web-vitals": "^4.2.3"
Expand Down
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { CurrentAppTranslation } from './translations/appTranslation';
import apiClient from './apiClient';
import Login from './pages/loginPage';
import CreateUserPage from './pages/createUserPage';
import DashboardPage from './pages/dashboardPage';
import DashboardPage from './pages/dashboardPages/dashboardPage';
import SearchUserPage from './pages/searchUserPage';
import UserInfoPage from './pages/userInfoPage';
import { Box, CircularProgress, Typography } from '@mui/material';
Expand Down
2 changes: 1 addition & 1 deletion src/AppLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { forceUpdateCreateCoursePage } from './pages/createCoursePage';
import { forceUpdateCreateExamPage } from './pages/createExamPage';
import { forceUpdateCreateTopicPage } from './pages/createTopicPage';
import { forceUpdateCreateUserPage } from './pages/createUserPage';
import { forceUpdateDashboardPage } from './pages/dashboardPage';
import { forceUpdateDashboardPage } from './pages/dashboardPages/dashboardPage';
import { forceUpdateExamInfoPage } from './pages/examInfoPage';
import { forceUpdateLoginPage } from './pages/loginPage';
import { forceUpdateSearchCoursePage } from './pages/searchCoursePage';
Expand Down
Loading

0 comments on commit b371137

Please sign in to comment.