import React from 'react' import { View } from 'react-native' import AppText from './app-text' import { shared } from '../i18n/en/labels' const AppLoadingView = () => { return ( {shared.loading} ) } export default AppLoadingView