import BasicWindow from "../../Components/BasicWindow"; import BackButton from "../../Components/BackButton"; import { useParams, Link } from "react-router-dom"; import AllTimeReportsInProject from "../../Components/AllTimeReportsInProject"; import Button from "../../Components/Button"; function UserViewTimeReportsPage(): JSX.Element { const { projectName } = useParams(); const content = ( <>

Your Time Reports In: {projectName}

); const buttons = ( <>