January 2019
Intermediate to advanced
592 pages
14h 30m
English
This recipe depends on all of the previous ones, so make sure to follow each recipe preceding this one.
In the first recipe of this chapter, we installed the react-redux library along with our other dependencies. In this recipe, we are finally going to make use of it.
We'll also be using a third-party library for generating random color hexes, which we'll use to request colored images from the placeholder image service at https://placehold.it/. Before we begin, install randomcolor with npm:
npm install --save randomcolor
Or you can install it with yarn:
yarn add randomcolor
Read now
Unlock full access