mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
10 lines
315 B
JavaScript
10 lines
315 B
JavaScript
import {connect} from 'react-redux';
|
|
import {
|
|
fetchBalanceSheet,
|
|
} from 'store/financialStatement/financialStatements.actions';
|
|
|
|
export const mapDispatchToProps = (dispatch) => ({
|
|
fetchBalanceSheet: (query = {}) => dispatch(fetchBalanceSheet({ query })),
|
|
});
|
|
|
|
export default connect(null, mapDispatchToProps); |