TTime/frontend/src/Pages/ProjectManagerPages/PMChangeRole.tsx
2024-03-20 13:51:49 +01:00

20 lines
420 B
TypeScript

import BasicWindow from "../../Components/BasicWindow";
import BackButton from "../../Components/BackButton";
import ChangeRoles from "../../Components/ChangeRoles";
function ChangeRole(): JSX.Element {
const content = (
<>
<ChangeRoles />
</>
);
const buttons = (
<>
<BackButton />
</>
);
return <BasicWindow content={content} buttons={buttons} />;
}
export default ChangeRole;