profile refactor

This commit is contained in:
2026-06-29 17:41:56 +03:00
parent 2eaa11f790
commit 237112c302
33 changed files with 7722 additions and 232 deletions

View File

@@ -0,0 +1,10 @@
import { useMe } from '@features/auth'
import { MnemonicSection } from '@widgets/profile'
import { Spinner } from '@shared/ui'
// «Мнемоническая фраза» dashboard item.
export function MnemonicItem() {
const { isLoading } = useMe()
if (isLoading) return <Spinner fullscreen label="Загрузка" />
return <MnemonicSection />
}