9 lines
No EOL
208 B
TypeScript
9 lines
No EOL
208 B
TypeScript
import { Stack } from "expo-router";
|
|
|
|
export default function Layout() {
|
|
return (
|
|
<Stack>
|
|
<Stack.Screen name="index" options={{ title: "Create Coupon", headerShown: false }} />
|
|
</Stack>
|
|
);
|
|
} |