/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
shared/wallets/routes.tsx
15 строк
502 B
chrisnojima-zoom
Version 670 - clean2 (#29122)
08 июн 2026, 19:31
Не верифицирован
08 июн 2026, 19:31
1943197
Код
Авторство
О чём код?
import * as React from 'react' import * as C from '@/constants' import {defineRouteMap} from '@/constants/types/router' export const newRoutes = defineRouteMap({ walletsRoot: { getOptions: {title: 'Wallet'}, screen: React.lazy(async () => import('.')), }, }) export const newModalRoutes = defineRouteMap({ reallyRemoveAccount: C.makeScreen(React.lazy(async () => import('./really-remove-account'))), removeAccount: C.makeScreen(React.lazy(async () => import('./remove-account'))), })