Remove bindActionCreators({}, dispatch) (empty) (#4135)

This commit is contained in:
Jaco Greeff
2017-01-11 17:02:53 +01:00
committed by GitHub
parent 32dbf9958e
commit 3e74d46a06
15 changed files with 22 additions and 97 deletions

View File

@@ -16,7 +16,6 @@
import React, { Component, PropTypes } from 'react';
import { connect } from 'react-redux';
import { bindActionCreators } from 'redux';
import AddressSelect from '../AddressSelect';
@@ -68,11 +67,7 @@ function mapStateToProps (state) {
};
}
function mapDispatchToProps (dispatch) {
return bindActionCreators({}, dispatch);
}
export default connect(
mapStateToProps,
mapDispatchToProps
null
)(InputAddressSelect);