1
0
Fork 0
mirror of https://github.com/BlueWallet/BlueWallet.git synced 2025-03-16 20:21:35 +01:00
BlueWallet/navigation/LazyLoadSignVerifyStack.tsx
2024-05-21 11:56:10 +01:00

11 lines
312 B
TypeScript

import React, { lazy, Suspense } from 'react';
import { LazyLoadingIndicator } from './LazyLoadingIndicator';
const SignVerify = lazy(() => import('../screen/wallets/signVerify'));
export const SignVerifyComponent = () => (
<Suspense fallback={<LazyLoadingIndicator />}>
<SignVerify />
</Suspense>
);