fix back button

This commit is contained in:
pavel Hamawand 2024-03-16 17:50:15 +01:00
parent 49305d507f
commit 8164ba9040

View file

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