19 lines
495 B
TypeScript
19 lines
495 B
TypeScript
import BasicWindow from "../../Components/BasicWindow";
|
|
import BackButton from "../../Components/BackButton";
|
|
|
|
/**
|
|
* Renders the page for project manager's unsigned reports.
|
|
* @returns JSX.Element representing the page for project manager's unsigned reports.
|
|
*/
|
|
function PMUnsignedReports(): JSX.Element {
|
|
const content = <></>;
|
|
|
|
const buttons = (
|
|
<>
|
|
<BackButton />
|
|
</>
|
|
);
|
|
|
|
return <BasicWindow content={content} buttons={buttons} />;
|
|
}
|
|
export default PMUnsignedReports;
|