import Alert from '@mui/material/Alert' import Box from '@mui/material/Box' import Divider from '@mui/material/Divider' import Stack from '@mui/material/Stack' import Typography from '@mui/material/Typography' import { useUnit } from 'effector-react' import { $user } from '@/shared/model/auth' import { AuthMethodsSection } from './AuthMethodsSection' import { AvatarSection } from './AvatarSection' import { DeleteAccountSection } from './DeleteAccountSection' import { ProfileSection } from './ProfileSection' export function SettingsPage() { const user = useUnit($user) if (!user) { return Нужно войти. Перейдите на страницу «Вход». } return ( Настройки Текущая почта: {user.email} {!user.isAdmin && ( <> )} ) }