import React, { lazy, Suspense } from 'react';
import { LazyLoadingIndicator } from './LazyLoadingIndicator';
const AztecoRedeem = lazy(() => import('../screen/receive/aztecoRedeem'));
const SelectWallet = lazy(() => import('../screen/wallets/SelectWallet'));
export const AztecoRedeemComponent = () => (
}>
);
export const SelectWalletComponent = () => (
}>
);