BlueWallet/navigation/LazyLoadAztecoRedeemStack.tsx
2024-05-21 11:56:10 +01:00

19 lines
560 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>
);