17 lines
332 B
TypeScript
17 lines
332 B
TypeScript
import { Stack } from "expo-router";
|
|
import { StatusBar } from "expo-status-bar";
|
|
|
|
export default function RootLayout() {
|
|
return (
|
|
<>
|
|
<StatusBar style="dark" />
|
|
<Stack
|
|
screenOptions={{
|
|
headerShown: false,
|
|
contentStyle: { backgroundColor: "#f4efe4" },
|
|
}}
|
|
/>
|
|
</>
|
|
);
|
|
}
|