August 2017
Beginner
374 pages
10h 41m
English
Finally, we will need to include the DevTools component somewhere in our application to make sure that React displays it:
import DevTools from '../containers/DevTools.jsx'
const App = ({ store }) => <Provider store={store}> <div> <h1>React/Redux blog app</h1> <div><ConnectedFilterList /></div> <div><ConnectedPostList /></div> <DevTools /> </div> </Provider>
Read now
Unlock full access