Cannot connect multiple components using redux in react native
问题 I am not able to understand how to connect two different components with the redux store. Following is what I tried: View.js import React from 'react'; import {View, Text, Button} from 'react-native'; import {Actions} from 'react-native-router-flux'; export default ({counter,actions:{ incrementCounter}}) => ( <View> <Text>Hello from page 1</Text> <Button title='Go to page 2' onPress={() => Actions.page2({})} /> <Button title='Go to page 3' onPress={() => Actions.page3({})} /> <Button title=