2024-03-13 14:18:06 +01:00
|
|
|
import BasicWindow from "../../Components/BasicWindow";
|
2024-03-15 15:32:06 +01:00
|
|
|
import BackButton from "../../Components/BackButton";
|
2024-03-13 14:18:06 +01:00
|
|
|
|
|
|
|
function UserViewTimeReportsPage(): JSX.Element {
|
2024-03-15 03:34:38 +01:00
|
|
|
const content = (
|
|
|
|
<>
|
|
|
|
<h1 className="font-bold text-[30px] mb-[20px]">Your Time Reports</h1>
|
|
|
|
{/* Här kan du inkludera logiken för att visa användarens tidrapporter */}
|
|
|
|
</>
|
|
|
|
);
|
2024-03-13 14:18:06 +01:00
|
|
|
|
2024-03-14 10:46:45 +01:00
|
|
|
const buttons = (
|
|
|
|
<>
|
2024-03-15 15:32:06 +01:00
|
|
|
<BackButton />
|
2024-03-14 10:46:45 +01:00
|
|
|
</>
|
|
|
|
);
|
2024-03-13 14:18:06 +01:00
|
|
|
|
|
|
|
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
|
|
|
|
}
|
|
|
|
export default UserViewTimeReportsPage;
|