January 2019
Intermediate to advanced
592 pages
14h 30m
English
We'll need a new empty app for this recipe. Let's call it redux-app.
We'll also need two dependencies: redux for handling state management and react-redux for gluing together Redux and React Native. You can install them from the command line with yarn:
yarn add redux react-redux
Or you can use npm:
npm install --save redux react-redux
Read now
Unlock full access