Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
360 Bytes
import * as React from 'react'
import { ActivityIndicator, StyleSheet, View } from 'react-native'
export function LoadingIndicator() {
return (
<View style={styles.fill}>
<ActivityIndicator size="large" />
</View>
)
}
const styles = StyleSheet.create({
fill: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
})