import type React from 'react'; import { Box, SafeBox } from '@components/box'; import { AppImage } from '@components/image'; import { AppText } from '@components/text'; import type { RootNavigationProps } from '@navigation/types'; import { useEffect } from 'react'; import { ActivityIndicator } from 'react-native'; export interface StartupFeaturesProps extends RootNavigationProps<'Startup'> {} export const StartupFeatures: React.FC = ({ navigation, }) => { // biome-ignore lint/correctness/useExhaustiveDependencies: useEffect(() => { new Promise(res => { setTimeout(res, 500); }).then(() => { navigation.navigate('Home'); }); }, []); return ( Loading... ); };