11 lines
266 B
TypeScript
11 lines
266 B
TypeScript
![]() |
import BasicWindow from "../../Components/BasicWindow";
|
||
|
|
||
|
function PMProjectMembers(): JSX.Element {
|
||
|
const content = <></>;
|
||
|
|
||
|
const buttons = <></>;
|
||
|
|
||
|
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
|
||
|
}
|
||
|
export default PMProjectMembers;
|