aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/components/ui/FullPageSpinner.tsx
blob: 5436937a01372489a401eea59901fd24446385e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { ActivityIndicator, View } from "react-native";

export default function FullPageSpinner() {
  return (
    <View className="h-full w-full items-center justify-center bg-gray-100 dark:bg-background">
      <ActivityIndicator />
    </View>
  );
}