diff --git a/App.tsx b/App.tsx index 41bdd78..90395cb 100644 --- a/App.tsx +++ b/App.tsx @@ -1,4 +1,5 @@ -import { MyTabs } from "@/navigations/BottomTabs"; +import { UserAuthenticationContextProvider } from "@/contexts/UserAuthenticationContext"; +import UnloggedUserStackNavigation from "@/navigations/UnloggedUserStackNavigation"; import theme from "@/themes/Theme"; import { NavigationContainer } from "@react-navigation/native"; import { ThemeProvider } from "@shopify/restyle"; @@ -7,15 +8,17 @@ import { StyleSheet } from "react-native"; export default function App() { return ( - - {/* */} - {/* + + + {/* */} + {/* */} - - {/* */} - + + {/* */} + + ); } @@ -28,3 +31,5 @@ const styles = StyleSheet.create({ justifyContent: "center", }, }); + +const NavigatonRenderer = () => {};