How to get access to reducer inside App using React Navigation v5 in React Native?
问题 I'm trying to build app with React Navigation v5 and stuck with Authentication flow. Here is some code to understand what I'm trying to do: const Stack = createStackNavigator(); const Drawer = createDrawerNavigator(); const AuthContext = React.createContext(); export default class App extends Component { // constructor() ... render() { const store = configureStore(); // rootReducer return ( <AuthContext.Provider store={store}> <NavigationContainer> // here I have to access my userReducer to