mastodon/app/javascript/flavours/glitch/features/ui/containers/bundle_container.js

20 lines
483 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
import Bundle from '../components/bundle';
2017-12-04 08:26:40 +01:00
import { fetchBundleRequest, fetchBundleSuccess, fetchBundleFail } from 'flavours/glitch/actions/bundles';
const mapDispatchToProps = dispatch => ({
onFetch () {
dispatch(fetchBundleRequest());
},
onFetchSuccess () {
dispatch(fetchBundleSuccess());
},
onFetchFail (error) {
dispatch(fetchBundleFail(error));
},
});
export default connect(null, mapDispatchToProps)(Bundle);