import React from 'react'; import { createNativeStackNavigator } from '@react-navigation/native-stack'; import { LeadsScreen, LeadDetailsScreen } from '@features'; import { route, RouteParams } from '@utils'; import { useTheme } from '@theme'; export type LeadsStackParamList = Pick; const Stack = createNativeStackNavigator(); export const LeadsStack = () => { const { theme: colors } = useTheme(); return ( ); };