Files
featheroom/lib/ui/components/LoadingIndicator.tsx
2024-10-31 23:43:20 +01:00

14 lines
303 B
TypeScript

import React from 'react'
import { ActivityIndicator, Surface } from 'react-native-paper'
const LoadingIndicator = () => (
<Surface
elevation={0}
style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}
>
<ActivityIndicator />
</Surface>
)
export default LoadingIndicator