Sherlock / app / (tabs) / (map) / _layout.tsx
_layout.tsx
Raw
import React from 'react'
import Colors from '../../../constants/Colors';
import { Stack } from 'expo-router';



const MapView = () => {

  return (
    <Stack>
        <Stack.Screen name='map' options={{headerShown: false}}/>
    </Stack>
  )
}

export default MapView