20 lines
476 B
JavaScript
20 lines
476 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
|
||
|
import Bundle from '../components/bundle';
|
||
|
|
||
|
import { fetchBundleRequest, fetchBundleSuccess, fetchBundleFail } from '../../../actions/bundles';
|
||
|
|
||
|
const mapDispatchToProps = dispatch => ({
|
||
|
onFetch () {
|
||
|
dispatch(fetchBundleRequest());
|
||
|
},
|
||
|
onFetchSuccess () {
|
||
|
dispatch(fetchBundleSuccess());
|
||
|
},
|
||
|
onFetchFail (error) {
|
||
|
dispatch(fetchBundleFail(error));
|
||
|
},
|
||
|
});
|
||
|
|
||
|
export default connect(null, mapDispatchToProps)(Bundle);
|