mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-24 15:36:59 +01:00
11 lines
311 B
TypeScript
11 lines
311 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>
|
||
|
);
|