Changed name of new component and minor fix

This commit is contained in:
Mattias 2024-03-18 15:17:53 +01:00
parent 3106e0f445
commit 1893340c63
2 changed files with 5 additions and 2 deletions

View file

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