28 lines
569 B
TypeScript
28 lines
569 B
TypeScript
import BasicWindow from "../../Components/BasicWindow";
|
|
import Button from "../../Components/Button";
|
|
|
|
function AdminProjectAddMember(): JSX.Element {
|
|
const content = <></>;
|
|
|
|
const buttons = (
|
|
<>
|
|
<Button
|
|
text="Add"
|
|
onClick={(): void => {
|
|
return;
|
|
}}
|
|
type="button"
|
|
/>
|
|
<Button
|
|
text="Back"
|
|
onClick={(): void => {
|
|
return;
|
|
}}
|
|
type="button"
|
|
/>
|
|
</>
|
|
);
|
|
|
|
return <BasicWindow content={content} buttons={buttons} />;
|
|
}
|
|
export default AdminProjectAddMember;
|