24 lines
No EOL
490 B
TypeScript
24 lines
No EOL
490 B
TypeScript
import FloatingCartBar from "@/components/floating-cart-bar";
|
|
import { tw } from "common-ui";
|
|
import { Stack } from "expo-router";
|
|
import { View } from "react-native";
|
|
|
|
export default function HomeLayout() {
|
|
return (
|
|
<>
|
|
<Stack
|
|
screenOptions={{
|
|
headerShown: false,
|
|
}}
|
|
>
|
|
<Stack.Screen
|
|
name="product-detail/[id]"
|
|
options={{
|
|
headerShown: false,
|
|
title: "Product Details",
|
|
}}
|
|
/>
|
|
</Stack>
|
|
</>
|
|
);
|
|
} |