aboutsummaryrefslogtreecommitdiffstats
path: root/app/_layout.tsx
blob: 38ccb40841c8c53936a4ea89c50608fa71323af0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { Slot } from "expo-router";
import { StatusBar } from "expo-status-bar";
import { View } from "react-native";

export default function RootLayout() {
  return (
    <View className="w-full h-full bg-white">
      <Slot />
      <StatusBar style="auto" />
    </View>
  );
}