TTime/frontend/src/Pages/ProjectManagerPages/PMOtherUsersTR.tsx
pavel Hamawand 92336ff4fd backbutton
2024-03-16 17:58:27 +01:00

15 lines
352 B
TypeScript

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