babkbutton

This commit is contained in:
pavel Hamawand 2024-03-16 17:59:25 +01:00
parent 92336ff4fd
commit 38378c7a10

View file

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