mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1import React from 'react'
2import {ActivityIndicator, View} from 'react-native'
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}