backButton

This commit is contained in:
pavel Hamawand 2024-03-16 18:01:14 +01:00
parent 31e3b99448
commit 17edf6b911

View file

@ -1,6 +1,7 @@
import BasicWindow from "../../Components/BasicWindow";
import Button from "../../Components/Button";
import TimeReport from "../../Components/TimeReport";
import BackButton from "../../Components/BackButton";
function PMViewUnsignedReport(): JSX.Element {
const content = (
@ -26,12 +27,7 @@ function PMViewUnsignedReport(): JSX.Element {
return;
}}
/>
<Button
text="Back"
onClick={(): void => {
return;
}}
/>
<BackButton />
</>
);