mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
refactoring: customers landing list. refactoring: vendors landing list. refactoring: manual journals landing list.
11 lines
302 B
JavaScript
11 lines
302 B
JavaScript
import { connect } from 'react-redux';
|
|
import {
|
|
setCustomersTableState
|
|
} from 'store/customers/customers.actions';
|
|
|
|
export const mapDispatchToProps = (dispatch) => ({
|
|
setCustomersTableState: (state) => dispatch(setCustomersTableState(state)),
|
|
});
|
|
|
|
export default connect(null, mapDispatchToProps);
|