August 2017
Beginner
374 pages
10h 41m
English
After creating our DevTools component, we will still need to connect it to Redux. The createDevTools() helper returns a special static method—DevTools.instrument()—a store enhancer, which can be passed to the Redux store.
A store enhancer is a function that is passed as the last argument to createStore(). It can extend (enhance) the behavior of our Redux store. However, we need to be careful to use only DevTools.instrument() in a development environment—never load the DevTools store enhancer in production.
Read now
Unlock full access