Added time report component to various pages

This commit is contained in:
Davenludd 2024-03-14 15:17:15 +01:00
parent 46c4a5dc92
commit 41e1c32ee0
5 changed files with 27 additions and 5 deletions

View file

@ -1,8 +1,14 @@
import BasicWindow from "../../Components/BasicWindow";
import Button from "../../Components/Button";
import NewTimeReport from "../../Components/TimeReport";
function UserEditTimeReportPage(): JSX.Element {
const content = <></>;
const content = (
<>
<h1 className="font-bold text-[30px] mb-[20px]">Edit Time Report</h1>
<NewTimeReport />
</>
);
const buttons = (
<>

View file

@ -1,10 +1,11 @@
import BasicWindow from "../../Components/BasicWindow";
import Button from "../../Components/Button";
import NewTimeReport from "../../Components/NewTImeReport";
import NewTimeReport from "../../Components/TimeReport";
function UserNewTimeReportPage(): JSX.Element {
const content = (
<>
<h1 className="font-bold text-[30px] mb-[20px]">New Time Report</h1>
<NewTimeReport />
</>
);