Remove unused import and add DisplayUnsignedReports component

This commit is contained in:
Mattias 2024-03-21 12:10:53 +01:00
parent 4b6c93a202
commit 1b20173ece
2 changed files with 7 additions and 2 deletions

View file

@ -1,6 +1,6 @@
import { useState, useEffect } from "react";
import { Project } from "../Types/goTypes";
import { Link, useNavigate } from "react-router-dom";
import { useNavigate } from "react-router-dom";
import { api } from "../API/API";
/**

View file

@ -1,8 +1,13 @@
import BasicWindow from "../../Components/BasicWindow";
import BackButton from "../../Components/BackButton";
import DisplayUnsignedReports from "../../Components/DisplayUnsignedReports";
function PMUnsignedReports(): JSX.Element {
const content = <></>;
const content = (
<>
<DisplayUnsignedReports />
</>
);
const buttons = (
<>