20 lines
432 B
TypeScript
20 lines
432 B
TypeScript
import BasicWindow from "../../Components/BasicWindow";
|
|
import Button from "../../Components/Button";
|
|
|
|
function PMUnsignedReports(): JSX.Element {
|
|
const content = <></>;
|
|
|
|
const buttons = (
|
|
<>
|
|
<Button
|
|
text="Back"
|
|
onClick={(): void => {
|
|
return;
|
|
}}
|
|
/>
|
|
</>
|
|
);
|
|
|
|
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
|
|
}
|
|
export default PMUnsignedReports;
|