May 2017
Intermediate to advanced
388 pages
7h 30m
English
Here's a diagram of all our components:
Starting from the Filter container, we will build the Filter functionality. You can explore more examples of this type of list (To-do List) in the Redux GitHub repository at https://github.com/reactjs/redux/tree/master/examples.
constFilter = ({filters, actions}) => { return(<div> <FilterForm addFilter={actions.addFilter}/> <FilterList filters={filters} actions={actions}/> </div>) } .... Code Ommited export default connect(mapStateToProps, mapDispatchToProps)(Filter)
Read now
Unlock full access