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

21 lines
420 B
TypeScript
Raw Normal View History

import BasicWindow from "../../Components/BasicWindow";
2024-03-16 17:57:51 +01:00
import BackButton from "../../Components/BackButton";
2024-03-20 13:51:49 +01:00
import ChangeRoles from "../../Components/ChangeRoles";
function ChangeRole(): JSX.Element {
2024-03-20 13:51:49 +01:00
const content = (
<>
<ChangeRoles />
</>
);
const buttons = (
<>
2024-03-16 17:57:51 +01:00
<BackButton />
</>
);
return <BasicWindow content={content} buttons={buttons} />;
}
export default ChangeRole;