Corrected NewWeeklyReport (prev. TimeReports) and changed imports

This commit is contained in:
Mattias 2024-03-17 13:39:16 +01:00
parent 8d0da111eb
commit 62f1926305
5 changed files with 36 additions and 34 deletions

View file

@ -1,6 +1,6 @@
import BasicWindow from "../../Components/BasicWindow";
import Button from "../../Components/Button";
import TimeReport from "../../Components/TimeReport";
import TimeReport from "../../Components/NewWeeklyReport";
function PMTotalTimeActivity(): JSX.Element {
const content = (

View file

@ -1,6 +1,6 @@
import BasicWindow from "../../Components/BasicWindow";
import Button from "../../Components/Button";
import TimeReport from "../../Components/TimeReport";
import TimeReport from "../../Components/NewWeeklyReport";
function PMViewUnsignedReport(): JSX.Element {
const content = (

View file

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

View file

@ -1,6 +1,6 @@
import BasicWindow from "../../Components/BasicWindow";
import Button from "../../Components/Button";
import NewTimeReport from "../../Components/TimeReport";
import NewTimeReport from "../../Components/NewWeeklyReport";
import { Link } from "react-router-dom";
function UserNewTimeReportPage(): JSX.Element {