TTime/frontend/src/Pages/ProjectManagerPages/PMOtherUsersTR.tsx
2024-03-14 10:50:52 +01:00

20 lines
426 B
TypeScript

import BasicWindow from "../../Components/BasicWindow";
import Button from "../../Components/Button";
function PMOtherUsersTR(): JSX.Element {
const content = <></>;
const buttons = (
<>
<Button
text="Back"
onClick={(): void => {
return;
}}
/>
</>
);
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
}
export default PMOtherUsersTR;