minecraft-tools/app/_layout.tsx

10 lines
189 B
TypeScript
Raw Normal View History

import { Stack } from "expo-router";
export default function RootLayout() {
return (
<Stack>
<Stack.Screen name="index" options={{ headerShown: false }} />
</Stack>
);
}