— the reducers decide which actions are theirs. • The store holds the return values of ALL reducers • Reducers are bundled together into one RootReducer
render() { // todoList is now available as a prop! let todoList = this.props.todoList; } } function mapStateToProps(state) { return { todoList: state.todoList }; }