mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-13 13:16:52 +03:00
6782f4ae41
* Move extension * prettier
17 lines
432 B
JavaScript
17 lines
432 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);
|