rsnext/examples/with-redux-wrapper/components/AddCount.js
2019-05-28 16:06:13 -07:00

41 lines
827 B
JavaScript

/* eslint-disable */
import React, { Component } from 'react'
import { connect } from 'react-redux'
import { bindActionCreators } from 'redux'
import { addCount } from '../store'
class AddCount extends Component {
add = () => {
this.props.addCount()
}
render() {
const { count } = this.props
return (
<div>
<style jsx>{`
div {
padding: 0 0 20px 0;
}
`}</style>
<h1>
AddCount: <span>{count}</span>
</h1>
<button onClick={this.add}>Add To Count</button>
</div>
)
}
}
const mapStateToProps = ({ count }) => ({ count })
const mapDispatchToProps = dispatch => {
return {
addCount: bindActionCreators(addCount, dispatch),
}
}
export default connect(
mapStateToProps,
mapDispatchToProps
)(AddCount)