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

16 lines
518 B
TypeScript
Raw Normal View History

2022-12-21 12:23:44 +01:00
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>
);
};