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

21 lines
491 B
TypeScript
Raw Normal View History

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