21 lines
535 B
TypeScript
21 lines
535 B
TypeScript
import BasicWindow from "../../Components/BasicWindow";
|
|
import BackButton from "../../Components/BackButton";
|
|
import EditWeeklyReport from "../../Components/EditWeeklyReport";
|
|
|
|
function UserEditTimeReportPage(): JSX.Element {
|
|
const content = (
|
|
<>
|
|
<h1 className="font-bold text-[30px] mb-[20px]">Edit Time Report</h1>
|
|
<EditWeeklyReport />
|
|
</>
|
|
);
|
|
|
|
const buttons = (
|
|
<>
|
|
<BackButton />
|
|
</>
|
|
);
|
|
|
|
return <BasicWindow content={content} buttons={buttons} />;
|
|
}
|
|
export default UserEditTimeReportPage;
|