mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
18 lines
559 B
TypeScript
18 lines
559 B
TypeScript
import React, { lazy, Suspense } from 'react';
|
|
import { LazyLoadingIndicator } from './LazyLoadingIndicator';
|
|
|
|
const AztecoRedeem = lazy(() => import('../screen/receive/aztecoRedeem'));
|
|
const SelectWallet = lazy(() => import('../screen/wallets/selectWallet')); // Assuming the path is correct
|
|
|
|
export const AztecoRedeemComponent = () => (
|
|
<Suspense fallback={<LazyLoadingIndicator />}>
|
|
<AztecoRedeem />
|
|
</Suspense>
|
|
);
|
|
|
|
export const SelectWalletComponent = () => (
|
|
<Suspense fallback={<LazyLoadingIndicator />}>
|
|
<SelectWallet />
|
|
</Suspense>
|
|
);
|