mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-04 12:18:10 +01:00
11 lines
305 B
TypeScript
11 lines
305 B
TypeScript
|
import React, { lazy, Suspense } from 'react';
|
||
|
import { LazyLoadingIndicator } from './LazyLoadingIndicator';
|
||
|
|
||
|
const WalletXpub = lazy(() => import('../screen/wallets/xpub'));
|
||
|
|
||
|
export const WalletXpubComponent = () => (
|
||
|
<Suspense fallback={<LazyLoadingIndicator />}>
|
||
|
<WalletXpub />
|
||
|
</Suspense>
|
||
|
);
|