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 (