1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-rematch/shared/components/counter-display.js
Bhargav Ponnapalli 5187d142ea Added example for usage with rematch (#4095)
* Usage with rematch

* Run lint fix

* Add counter-display example and readme
2018-04-18 14:03:24 +02:00

32 lines
807 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)