August 2017
Beginner
374 pages
10h 41m
English
We are now going to use React-Redux to create a container component:
import { connect } from 'react-redux'
import PostList from '../components/PostList.jsx'
The connect function has the following signature: connect(mapStateToProps, mapDispatchToProps) This means that we need to pass two functions to the connect function:
Read now
Unlock full access