Added button to PMProjectMembers

This commit is contained in:
Davenludd 2024-03-14 10:49:15 +01:00
parent a5f15e5c06
commit 2c9d3baafa

View file

@ -1,9 +1,19 @@
import BasicWindow from "../../Components/BasicWindow";
import Button from "../../Components/Button";
function PMProjectMembers(): JSX.Element {
const content = <></>;
const buttons = <></>;
const buttons = (
<>
<Button
text="Back"
onClick={(): void => {
return;
}}
/>
</>
);
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
}