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



const HomeLayout = () => {

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

export default HomeLayout