20 lines
491 B
TypeScript
20 lines
491 B
TypeScript
import BasicWindow from "../../Components/BasicWindow";
|
|
import BackButton from "../../Components/BackButton";
|
|
import AllTimeReportsInProjectOtherUser from "../../Components/AllTimeReportsInProjectOtherUser";
|
|
|
|
function PMOtherUsersTR(): JSX.Element {
|
|
const content = (
|
|
<>
|
|
<AllTimeReportsInProjectOtherUser />
|
|
</>
|
|
);
|
|
|
|
const buttons = (
|
|
<>
|
|
<BackButton />
|
|
</>
|
|
);
|
|
|
|
return <BasicWindow content={content} buttons={buttons} />;
|
|
}
|
|
export default PMOtherUsersTR;
|