20 lines
420 B
TypeScript
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;
|