BlueWallet/navigation/MasterView.tsx
Marcos Rodriguez Velez 362ab279e9 Update MasterView.tsx
2024-05-18 20:32:45 +01:00

22 lines
558 B
TypeScript

import 'react-native-gesture-handler'; // should be on top
import React, { Suspense, lazy } from 'react';
import MainRoot from '../navigation';
import { useStorage } from '../blue_modules/storage-context';
const CompanionDelegates = lazy(() => import('../components/CompanionDelegates'));
const MasterView = () => {
const { walletsInitialized } = useStorage();
return (
<>
<MainRoot />
{walletsInitialized && (
<Suspense>
<CompanionDelegates />
</Suspense>
)}
</>
);
};
export default MasterView;