Add buttons to PMViewUnsignedReport component

This commit is contained in:
Davenludd 2024-03-14 10:54:37 +01:00
parent 8a2724de5e
commit 5c0cf5fc33

View file

@ -1,9 +1,31 @@
import BasicWindow from "../../Components/BasicWindow";
import Button from "../../Components/Button";
function PMViewUnsignedReport(): JSX.Element {
const content = <></>;
const buttons = <></>;
const buttons = (
<>
<Button
text="Sign"
onClick={(): void => {
return;
}}
/>
<Button
text="Save"
onClick={(): void => {
return;
}}
/>
<Button
text="Back"
onClick={(): void => {
return;
}}
/>
</>
);
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
}