import React, {Component} from 'react' import {connect} from 'react-redux' import {increment} from '../actions' class AddCount extends Component { add = () => { this.props.dispatch(increment()) } render () { const {count} = this.props return (

AddCount: {count}

) } } const mapStateToProps = ({count}) => ({count}) export default connect(mapStateToProps)(AddCount)