Files
waseel/app/(root)/_layout.tsx
T

12 lines
207 B
TypeScript

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