20 lines
437 B
JavaScript
20 lines
437 B
JavaScript
import { bindActionCreators } from 'redux';
|
|
import { connect } from 'react-redux';
|
|
import Counter from '../components/Counter';
|
|
import * as CounterActions from '../actions/counter';
|
|
|
|
function mapStateToProps(state) {
|
|
return {
|
|
counter: state.counter
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return bindActionCreators(CounterActions, dispatch);
|
|
}
|
|
|
|
export default connect(
|
|
mapStateToProps,
|
|
mapDispatchToProps
|
|
)(Counter);
|