import React, { lazy, Suspense } from 'react'; import { LazyLoadingIndicator } from './LazyLoadingIndicator'; const SendDetails = lazy(() => import('../screen/send/SendDetails')); const Confirm = lazy(() => import('../screen/send/Confirm')); const PsbtWithHardwareWallet = lazy(() => import('../screen/send/psbtWithHardwareWallet')); const CreateTransaction = lazy(() => import('../screen/send/create')); const PsbtMultisig = lazy(() => import('../screen/send/psbtMultisig')); const PsbtMultisigQRCode = lazy(() => import('../screen/send/psbtMultisigQRCode')); const Success = lazy(() => import('../screen/send/success')); const SelectWallet = lazy(() => import('../screen/wallets/SelectWallet')); const CoinControl = lazy(() => import('../screen/send/coinControl')); const PaymentCodesList = lazy(() => import('../screen/wallets/PaymentCodesList')); // Export each component with its lazy loader and optional configurations export const SendDetailsComponent = () => ( }> ); export const ConfirmComponent = () => ( }> ); export const PsbtWithHardwareWalletComponent = () => ( }> ); export const CreateTransactionComponent = () => ( }> ); export const PsbtMultisigComponent = () => ( }> ); export const PsbtMultisigQRCodeComponent = () => ( }> ); export const SuccessComponent = () => ( }> ); export const SelectWalletComponent = () => ( }> ); export const CoinControlComponent = () => ( }> ); export const PaymentCodesListComponent = () => ( }> );