React Native Installation
Mon Jul 06 2020 13:54:22 GMT+0000 (UTC)
Saved by
@imtiaz
npm install redux
npm install react-redux
npm install redux-thunk
--save
// In index.js
import {Provider} from 'react-redux';
import {combineReducer} from 'react-redux';
import store from './src/Redux/store';
const Root = () => (
<Provider store={store}>
<App />
</Provider>
)
content_copyCOPY
React Native
Comments