mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
10 lines
301 B
TypeScript
10 lines
301 B
TypeScript
// @ts-nocheck
|
|
import { connect } from 'react-redux';
|
|
import { fetchSubscriptions } from '@/store/subscription/subscription.actions';
|
|
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
requestFetchSubscriptions: () => dispatch(fetchSubscriptions()),
|
|
});
|
|
|
|
export default connect(null, mapDispatchToProps);
|