minor fixes

This commit is contained in:
Mattias 2024-03-17 16:55:51 +01:00
parent 81893ae3e8
commit 17a081e816
2 changed files with 3 additions and 2 deletions

View file

@ -1,5 +1,6 @@
import BasicWindow from "../../Components/BasicWindow";
import Button from "../../Components/Button";
import BackButton from "../../Components/BackButton";
import NewTimeReport from "../../Components/NewWeeklyReport";
function UserEditTimeReportPage(): JSX.Element {

View file

@ -1,13 +1,13 @@
import BasicWindow from "../../Components/BasicWindow";
import Button from "../../Components/Button";
import NewTimeReport from "../../Components/NewWeeklyReport";
import NewWeeklyReport from "../../Components/NewWeeklyReport";
import { Link } from "react-router-dom";
function UserNewTimeReportPage(): JSX.Element {
const content = (
<>
<h1 className="font-bold text-[30px] mb-[20px]">New Time Report</h1>
<NewTimeReport />
<NewWeeklyReport />
</>
);