react-redux-with-path
Version:
A version of react-redux designed for cases that want to access sub-tree of the state. and take it as state in mapStateToProps and mapDispatchToProps
40 lines (25 loc) • 1.39 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.wrapActionCreators = exports.warning = exports.shallowEqual = exports.pathType = exports.storeShape = exports.wrapActionCreatorsWithPath = exports.bindActionCreators = undefined;
var _bindActionCreators = require('./bindActionCreators');
var _bindActionCreators2 = _interopRequireDefault(_bindActionCreators);
var _storeShape = require('./storeShape');
var _storeShape2 = _interopRequireDefault(_storeShape);
var _pathType = require('./pathType');
var _pathType2 = _interopRequireDefault(_pathType);
var _shallowEqual = require('./shallowEqual');
var _shallowEqual2 = _interopRequireDefault(_shallowEqual);
var _warning = require('./warning');
var _warning2 = _interopRequireDefault(_warning);
var _wrapActionCreators = require('./wrapActionCreators');
var _wrapActionCreators2 = _interopRequireDefault(_wrapActionCreators);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
exports.bindActionCreators = _bindActionCreators2.default;
exports.wrapActionCreatorsWithPath = _bindActionCreators.wrapActionCreatorsWithPath;
exports.storeShape = _storeShape2.default;
exports.pathType = _pathType2.default;
exports.shallowEqual = _shallowEqual2.default;
exports.warning = _warning2.default;
exports.wrapActionCreators = _wrapActionCreators2.default;