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