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

21 lines
452 B
TypeScript
Raw Normal View History

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