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
35 lines
813 B
JavaScript
35 lines
813 B
JavaScript
import React, { Component } from 'react'
|
|
import { connect } from 'react-redux'
|
|
|
|
class CounterDisplay extends Component {
|
|
render () {
|
|
return (
|
|
<div>
|
|
<h3> Counter </h3>
|
|
<p>
|
|
This counter is connected via the <b>connect</b> function. Components
|
|
which are not pages can be connected using the connect function just
|
|
like redux components.
|
|
</p>
|
|
<p>Current value {this.props.counter} </p>
|
|
<p>
|
|
<button onClick={this.props.incrementBy3}>Increment</button>
|
|
</p>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
const mapState = state => ({
|
|
counter: state.counter
|
|
})
|
|
|
|
const mapDispatch = ({ counter: { increment, incrementAsync } }) => ({
|
|
incrementBy3: () => increment(3)
|
|
})
|
|
|
|
export default connect(
|
|
mapState,
|
|
mapDispatch
|
|
)(CounterDisplay)
|