mirror of
https://github.com/SrIzan10/featheroom.git
synced 2026-06-06 00:56:49 +00:00
14 lines
303 B
TypeScript
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
|