mirror of
https://github.com/lemeow125/Borrowing-TrackerFrontend.git
synced 2025-04-05 01:21:35 +08:00
41 lines
1.6 KiB
TypeScript
41 lines
1.6 KiB
TypeScript
import Header from "../../Components/Header/Header";
|
|
import styles from "../../styles";
|
|
import RestrictedComponent from "../../Components/RestrictedComponent/RestrictedComponent";
|
|
import TechnicianWidgets from "../../Components/DashboardPage/Technician/TechnicianWidgets";
|
|
import StudentTransactionListView from "../../Components/DashboardPage/Student/StudentTransactionListView";
|
|
import StudentDashboard from "../../Components/DashboardPage/Student/StudentDashboard";
|
|
import TechnicianNavigation from "../../Components/DashboardPage/Technician/TechnicianNavigation";
|
|
import TeacherTransactionListView from "../../Components/DashboardPage/Teacher/TeacherTransactionListView";
|
|
export default function Dashboard() {
|
|
return (
|
|
<div style={styles.background}>
|
|
<Header label={"Dashboard"} />
|
|
<div style={{ position: "relative", zIndex: 999, marginTop: 80 }}>
|
|
<RestrictedComponent allow_only={"Technician"}>
|
|
<TechnicianWidgets />
|
|
<TechnicianNavigation />
|
|
</RestrictedComponent>
|
|
<RestrictedComponent allow_only={"Student"}>
|
|
<div
|
|
style={{
|
|
...styles.flex_row,
|
|
...{
|
|
flexWrap: "wrap",
|
|
justifyContent: "center",
|
|
marginLeft: "16px",
|
|
marginRight: "16px",
|
|
},
|
|
}}
|
|
>
|
|
<StudentDashboard />
|
|
<StudentTransactionListView />
|
|
|
|
</div>
|
|
</RestrictedComponent>
|
|
<RestrictedComponent allow_only={"Teacher"}>
|
|
<TeacherTransactionListView />
|
|
</RestrictedComponent>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|