Added buttons to UserEditTimeReportPage

This commit is contained in:
Mattias 2024-03-14 10:32:39 +01:00
parent 42498ca1c4
commit 6be1060cff

View file

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