From 524be906393c2522702f4f8badc3527aad37c290 Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Wed, 16 Oct 2024 18:29:14 +0530 Subject: Added the Navigation to ForgotPasswordScreen and SignUpScreen --- src/navigation/AppNavigator.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/navigation/AppNavigator.js b/src/navigation/AppNavigator.js index 6c5daf8..721886e 100644 --- a/src/navigation/AppNavigator.js +++ b/src/navigation/AppNavigator.js @@ -1,5 +1,7 @@ import React from 'react'; import { createStackNavigator } from '@react-navigation/stack'; +import SignupScreen from '../screens/Auth/SignupScreen'; +import ForgotPasswordScreen from '../screens/Auth/ForgotPasswordScreen.js'; import LoginScreen from '../screens/Auth/LoginScreen'; import MallSelectionScreen from '../screens/MallSelectionScreen'; import ProductScannerScreen from '../screens/ProductScannerScreen'; @@ -11,6 +13,8 @@ const Stack = createStackNavigator(); const AppNavigator = () => ( + + -- cgit v1.2.3-59-g8ed1b