mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
0697c289f8
* Simplify redux example * Simplify redux example even more * Remove empty space
28 lines
561 B
JavaScript
28 lines
561 B
JavaScript
import React, {Component} from 'react'
|
|
import { connect } from 'react-redux'
|
|
import { addCount } from '../store'
|
|
|
|
class AddCount extends Component {
|
|
add = () => {
|
|
const {dispatch} = this.props
|
|
dispatch(addCount())
|
|
}
|
|
|
|
render () {
|
|
const { count } = this.props
|
|
return (
|
|
<div>
|
|
<h1>AddCount: <span>{count}</span></h1>
|
|
<button onClick={this.add}>Add To Count</button>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
function mapStateToProps (state) {
|
|
const {count} = state
|
|
return {count}
|
|
}
|
|
|
|
export default connect(mapStateToProps)(AddCount)
|