11 lines
340 B
TypeScript
11 lines
340 B
TypeScript
import AddUserToProject from "../../Components/AddUserToProject";
|
|
import BasicWindow from "../../Components/BasicWindow";
|
|
|
|
function AdminProjectAddMember(): JSX.Element {
|
|
const content = <AddUserToProject />;
|
|
|
|
const buttons = <></>;
|
|
|
|
return <BasicWindow content={content} buttons={buttons} />;
|
|
}
|
|
export default AdminProjectAddMember;
|