TTime/frontend/src/Pages/UserPages/UserEditTimeReportPage.tsx

22 lines
552 B
TypeScript
Raw Normal View History

import BasicWindow from "../../Components/BasicWindow";
2024-03-17 16:55:51 +01:00
import BackButton from "../../Components/BackButton";
2024-03-18 14:40:32 +01:00
import ViewWeeklyReport from "../../Components/ViewWeeklyReport";
function UserEditTimeReportPage(): JSX.Element {
const content = (
<>
<h1 className="font-bold text-[30px] mb-[20px]">Edit Time Report</h1>
2024-03-18 14:40:32 +01:00
<ViewWeeklyReport />
</>
);
const buttons = (
<>
<BackButton />
</>
);
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
}
export default UserEditTimeReportPage;