mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-24 03:28:06 +01:00
18 lines
475 B
JavaScript
18 lines
475 B
JavaScript
import { connect } from 'react-redux';
|
|
|
|
import { fetchBundleRequest, fetchBundleSuccess, fetchBundleFail } from '../../../actions/bundles';
|
|
import Bundle from '../components/bundle';
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
onFetch () {
|
|
dispatch(fetchBundleRequest());
|
|
},
|
|
onFetchSuccess () {
|
|
dispatch(fetchBundleSuccess());
|
|
},
|
|
onFetchFail (error) {
|
|
dispatch(fetchBundleFail(error));
|
|
},
|
|
});
|
|
|
|
export default connect(null, mapDispatchToProps)(Bundle);
|