Now uses addUserToProject

This commit is contained in:
Peter KW 2024-03-28 01:35:36 +01:00
parent 752d366cf7
commit 9052babaae

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} />;
}