rsnext/examples/with-redux-wrapper/components/AddCount.js

33 lines
700 B
JavaScript
Raw Normal View History

import React from 'react'
import { connect } from 'react-redux'
import { bindActionCreators } from 'redux'
import { addCount } from '../store/count/action'
const AddCount = ({ count, addCount }) => {
return (
<div>
<style jsx>{`
div {
padding: 0 0 20px 0;
}
`}</style>
<h1>
AddCount: <span>{count}</span>
</h1>
<button onClick={addCount}>Add To Count</button>
</div>
)
}
const mapStateToProps = state => ({
count: state.count.count,
})
const mapDispatchToProps = dispatch => {
return {
2019-05-29 01:06:13 +02:00
addCount: bindActionCreators(addCount, dispatch),
}
}
export default connect(mapStateToProps, mapDispatchToProps)(AddCount)