mirror of
https://github.com/SrIzan10/featheroom.git
synced 2026-06-06 00:56:49 +00:00
10 lines
249 B
TypeScript
10 lines
249 B
TypeScript
import { ActivityIndicator, Surface } from 'react-native-paper'
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<Surface className="flex-1 h-screen flex justify-center items-center">
|
|
<ActivityIndicator size="large" />
|
|
</Surface>
|
|
)
|
|
}
|