2024-03-14 10:32:49 +01:00
|
|
|
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";
|
2024-03-14 10:32:49 +01:00
|
|
|
|
|
|
|
function ChangeRole(): JSX.Element {
|
2024-03-20 13:51:49 +01:00
|
|
|
const content = (
|
|
|
|
<>
|
|
|
|
<ChangeRoles />
|
|
|
|
</>
|
|
|
|
);
|
2024-03-14 10:32:49 +01:00
|
|
|
|
2024-03-14 10:52:48 +01:00
|
|
|
const buttons = (
|
|
|
|
<>
|
2024-03-16 17:57:51 +01:00
|
|
|
<BackButton />
|
2024-03-14 10:52:48 +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 ChangeRole;
|