1 2 3 4 5 6 7 8 9 10 11 12 13 14
import React from 'react' import {ActivityIndicator, View} from 'react-native' import {s} from 'lib/styles' import {CenteredView} from './Views' export function LoadingScreen() { return ( <CenteredView> <View style={s.p20}> <ActivityIndicator size="large" /> </View> </CenteredView> ) }