1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-14 00:19:16 +01:00
unleash.unleash/frontend/src/component/admin/maintenance/MaintenanceTooltip.tsx
2022-12-21 13:23:44 +02:00

16 lines
518 B
TypeScript

import React from 'react';
import { Alert } from '@mui/material';
export const MaintenanceTooltip = () => {
return (
<Alert severity="warning">
<p>
<b>Heads up!</b> If you enable maintenance mode, edit access in
the entire system will be disabled for all the users (admins,
editors, custom roles, etc). During this time nobody will be
able to do changes or to make new configurations.
</p>
</Alert>
);
};