import Box from '@mui/material/Box'
import { useTheme } from '@mui/material/styles'
import { IS_DEMO_MODE } from '@/shared/config'
export function DemoOverlay() {
const theme = useTheme()
const isDark = theme.palette.mode === 'dark'
if (!IS_DEMO_MODE) return null
return (
<>
ДЕМО
ДЕМО-РЕЖИМ
>
)
}