mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 01:40:12 +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>
|
|
);
|