20 lines
No EOL
440 B
TypeScript
20 lines
No EOL
440 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 StoresLayout() {
|
|
return (
|
|
<>
|
|
<Stack
|
|
screenOptions={{
|
|
headerShown: false,
|
|
title: 'Our Stores',
|
|
}}
|
|
>
|
|
<Stack.Screen name="index" />
|
|
<Stack.Screen name="store-detail" />
|
|
</Stack>
|
|
</>
|
|
);
|
|
} |