aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/components/ui/FullPageSpinner.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/mobile/components/ui/FullPageSpinner.tsx')
-rw-r--r--apps/mobile/components/ui/FullPageSpinner.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/mobile/components/ui/FullPageSpinner.tsx b/apps/mobile/components/ui/FullPageSpinner.tsx
new file mode 100644
index 00000000..01187f11
--- /dev/null
+++ b/apps/mobile/components/ui/FullPageSpinner.tsx
@@ -0,0 +1,9 @@
+import { View, ActivityIndicator } from "react-native";
+
+export default function FullPageSpinner() {
+ return (
+ <View className="h-full w-full items-center justify-center">
+ <ActivityIndicator />
+ </View>
+ );
+}