mirror of
https://github.com/lemeow125/Borrowing-TrackerFrontend.git
synced 2025-04-05 09:31:35 +08:00
22 lines
941 B
TypeScript
22 lines
941 B
TypeScript
import Header from "../../Components/Header/Header";
|
|
import styles from "../../styles";
|
|
import RestrictedComponent from "../../Components/RestrictedComponent/RestrictedComponent";
|
|
import TechnicianWidgets from "../../Components/DashboardPage/TechnicianWidgets";
|
|
import TechnicianEquipmentButtons from "../../Components/DashboardPage/TechnicianEquipmentButtons";
|
|
import TechnicianLogButtons from "../../Components/DashboardPage/TechnicianLogButtons";
|
|
export default function Dashboard() {
|
|
return (
|
|
<div style={styles.background}>
|
|
<Header label={"Dashboard"} />
|
|
<RestrictedComponent allow_only={"Technician"}>
|
|
<TechnicianWidgets />
|
|
</RestrictedComponent>
|
|
<RestrictedComponent allow_only={"Technician"}>
|
|
<TechnicianEquipmentButtons />
|
|
</RestrictedComponent>
|
|
<RestrictedComponent allow_only={"Technician"}>
|
|
<TechnicianLogButtons />
|
|
</RestrictedComponent>
|
|
</div>
|
|
);
|
|
}
|