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

16 lines
335 B
TypeScript
Raw Normal View History

import BasicWindow from "../../Components/BasicWindow";
2024-03-16 17:58:27 +01:00
import BackButton from "../../Components/BackButton";
function PMOtherUsersTR(): JSX.Element {
const content = <></>;
const buttons = (
<>
2024-03-16 17:58:27 +01:00
<BackButton />
</>
);
return <BasicWindow content={content} buttons={buttons} />;
}
export default PMOtherUsersTR;