20 lines
No EOL
458 B
TypeScript
20 lines
No EOL
458 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 SearchResultsLayout() {
|
|
return (
|
|
<>
|
|
<Stack
|
|
screenOptions={{
|
|
headerShown: true,
|
|
title: "Search Results",
|
|
}}
|
|
/>
|
|
<View style={tw`absolute bottom-2 left-4 right-4`}>
|
|
<FloatingCartBar />
|
|
</View>
|
|
</>
|
|
);
|
|
} |