import React from 'react'; import { ActivityIndicator } from 'react-native'; import { useTheme } from 'react-native-paper'; import { RootView } from '.'; const LoadingView = () => { const { colors } = useTheme(); return ( ); }; export default LoadingView;