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