2024-03-14 10:32:49 +01:00
|
|
|
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";
|
2024-03-14 10:32:49 +01:00
|
|
|
|
|
|
|
function PMOtherUsersTR(): JSX.Element {
|
2024-03-21 14:00:47 +01:00
|
|
|
const content = (
|
|
|
|
<>
|
|
|
|
<AllTimeReportsInProjectOtherUser />
|
|
|
|
</>
|
|
|
|
);
|
2024-03-14 10:32:49 +01:00
|
|
|
|
2024-03-14 10:50:52 +01:00
|
|
|
const buttons = (
|
|
|
|
<>
|
2024-03-16 17:58:27 +01:00
|
|
|
<BackButton />
|
2024-03-14 10:50:52 +01:00
|
|
|
</>
|
|
|
|
);
|
2024-03-14 10:32:49 +01:00
|
|
|
|
2024-03-18 17:27:32 +01:00
|
|
|
return <BasicWindow content={content} buttons={buttons} />;
|
2024-03-14 10:32:49 +01:00
|
|
|
}
|
|
|
|
export default PMOtherUsersTR;
|