20 lines
546 B
TypeScript
20 lines
546 B
TypeScript
import BasicWindow from "../../Components/BasicWindow";
|
|
import BackButton from "../../Components/BackButton";
|
|
|
|
function UserViewTimeReportsPage(): JSX.Element {
|
|
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 */}
|
|
</>
|
|
);
|
|
|
|
const buttons = (
|
|
<>
|
|
<BackButton />
|
|
</>
|
|
);
|
|
|
|
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
|
|
}
|
|
export default UserViewTimeReportsPage;
|