aboutsummaryrefslogtreecommitdiffstats
path: root/app/_layout.tsx
blob: 7403c6ff42ee70de9ae2153cb29018509ce03515 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import "@/globals.css";

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>
  );
}