20 lines
467 B
TypeScript
20 lines
467 B
TypeScript
import BasicWindow from "../../Components/BasicWindow";
|
|
import BackButton from "../../Components/BackButton";
|
|
import DisplayUnsignedReports from "../../Components/DisplayUnsignedReports";
|
|
|
|
function PMUnsignedReports(): JSX.Element {
|
|
const content = (
|
|
<>
|
|
<DisplayUnsignedReports />
|
|
</>
|
|
);
|
|
|
|
const buttons = (
|
|
<>
|
|
<BackButton />
|
|
</>
|
|
);
|
|
|
|
return <BasicWindow content={content} buttons={buttons} />;
|
|
}
|
|
export default PMUnsignedReports;
|