Merge remote-tracking branch 'origin/frontend' into BumBranch

This commit is contained in:
al8763be 2024-03-28 16:45:39 +01:00
commit 09f2a2202f
13 changed files with 287 additions and 48 deletions

View file

@ -1,22 +1,10 @@
import BackButton from "../../Components/BackButton";
import AddUserToProject from "../../Components/AddUserToProject";
import BasicWindow from "../../Components/BasicWindow";
import Button from "../../Components/Button";
function AdminProjectAddMember(): JSX.Element {
const content = <></>;
const content = <AddUserToProject />;
const buttons = (
<>
<Button
text="Add"
onClick={(): void => {
return;
}}
type="button"
/>
<BackButton />
</>
);
const buttons = <></>;
return <BasicWindow content={content} buttons={buttons} />;
}