TTime/frontend/src/Pages/ProjectManagerPages/PMOtherUsersTR.tsx

11 lines
262 B
TypeScript
Raw Normal View History

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