2024-03-14 10:32:49 +01:00
|
|
|
import BasicWindow from "../../Components/BasicWindow";
|
2024-03-14 10:52:48 +01:00
|
|
|
import Button from "../../Components/Button";
|
2024-03-16 17:57:51 +01:00
|
|
|
import BackButton from "../../Components/BackButton";
|
2024-03-14 10:32:49 +01:00
|
|
|
|
|
|
|
function ChangeRole(): JSX.Element {
|
|
|
|
const content = <></>;
|
|
|
|
|
2024-03-14 10:52:48 +01:00
|
|
|
const buttons = (
|
|
|
|
<>
|
|
|
|
<Button
|
|
|
|
text="Save"
|
|
|
|
onClick={(): void => {
|
|
|
|
return;
|
|
|
|
}}
|
2024-03-15 14:32:17 +01:00
|
|
|
type="button"
|
2024-03-14 10:52:48 +01:00
|
|
|
/>
|
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
|
|
|
|
|
|
|
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
|
|
|
|
}
|
|
|
|
export default ChangeRole;
|