mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
9c4eefcdbf
* Add prettier for examples directory * Fix files * Fix linting * Add prettier script in case it has to be ran again
44 lines
866 B
JavaScript
44 lines
866 B
JavaScript
import React, { Component } from 'react'
|
|
import { connect } from 'react-redux'
|
|
import { bindActionCreators } from 'redux'
|
|
import { addCount } from '../lib/store'
|
|
|
|
class AddCount extends Component {
|
|
add = () => {
|
|
this.props.addCount()
|
|
}
|
|
|
|
render () {
|
|
const { count } = this.props
|
|
return (
|
|
<div>
|
|
<h1>
|
|
AddCount: <span>{count}</span>
|
|
</h1>
|
|
<button onClick={this.add}>Add To Count</button>
|
|
<style jsx>{`
|
|
h1 {
|
|
font-size: 20px;
|
|
}
|
|
div {
|
|
padding: 0 0 20px 0;
|
|
}
|
|
`}</style>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
const mapStateToProps = ({ count }) => ({ count })
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
return {
|
|
addCount: bindActionCreators(addCount, dispatch)
|
|
}
|
|
}
|
|
|
|
export default connect(
|
|
mapStateToProps,
|
|
mapDispatchToProps
|
|
)(AddCount)
|