August 2017
Beginner
374 pages
10h 41m
English
Now, all that is left to do is to import React and ReactDOM in the main src/index.js file and render the App component there:
import React from 'react' import ReactDOM from 'react-dom' import App from './components/App.jsx'
ReactDOM.render(
<App store={store} />,
document.getElementById('root')
)
Open the application in your browser. You should now see the blog application with our example posts and users. Click on the filter links to filter posts.
Read now
Unlock full access