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