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