mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
at rm-broken-strings 14 lines 297 B view raw
1import {ActivityIndicator, View} from 'react-native' 2 3import {s} from '#/lib/styles' 4import {CenteredView} from './Views' 5 6export function LoadingScreen() { 7 return ( 8 <CenteredView> 9 <View style={s.p20}> 10 <ActivityIndicator size="large" /> 11 </View> 12 </CenteredView> 13 ) 14}