freshyo/apps/admin-ui/app/(drawer)/customize-app/_layout.tsx
2026-01-24 00:13:15 +05:30

22 lines
No EOL
411 B
TypeScript

import { Stack } from "expo-router";
export default function Layout() {
return (
<Stack>
<Stack.Screen
name="index"
options={{
title: "Customize App",
headerShown: false,
}}
/>
<Stack.Screen
name="popular-items"
options={{
title: "Popular Items",
headerShown: false,
}}
/>
</Stack>
);
}