Removed button

This commit is contained in:
Mattias 2024-03-18 14:42:21 +01:00
parent 0634f83689
commit b82f73d192

View file

@ -1,5 +1,4 @@
import BasicWindow from "../../Components/BasicWindow";
import Button from "../../Components/Button";
import BackButton from "../../Components/BackButton";
import ViewWeeklyReport from "../../Components/ViewWeeklyReport";
@ -13,13 +12,6 @@ function UserEditTimeReportPage(): JSX.Element {
const buttons = (
<>
<Button
text="Save"
onClick={(): void => {
return;
}}
type="button"
/>
<BackButton />
</>
);