remove backbutton

This commit is contained in:
pavel Hamawand 2024-03-16 17:20:14 +01:00
parent 9ff3e9314c
commit 554cf9b12e

View file

@ -1,5 +1,4 @@
import BasicWindow from "../../Components/BasicWindow";
import Button from "../../Components/Button";
function PMProjectPage(): JSX.Element {
const content = (
@ -22,17 +21,6 @@ function PMProjectPage(): JSX.Element {
</>
);
const buttons = (
<>
<Button
text="Back"
onClick={(): void => {
return;
}}
/>
</>
);
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
return <BasicWindow username="Admin" content={content} buttons={undefined} />;
}
export default PMProjectPage;