Now displaying the right component

This commit is contained in:
Mattias 2024-03-18 14:40:32 +01:00
parent 69d4067209
commit 0634f83689

View file

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