mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
feat: Credit note.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import { connect } from 'react-redux';
|
||||
import {
|
||||
setVendorsCreditNoteTableState,
|
||||
resetVendorsCreditNoteTableState,
|
||||
} from '../../../../store/vendorsCreditNotes/vendorsCreditNotes.actions';
|
||||
|
||||
const mapDispatchToProps = (dispatch) => ({
|
||||
setVendorsCreditNoteTableState: (state) =>
|
||||
dispatch(setVendorsCreditNoteTableState(state)),
|
||||
resetVendorsCreditNoteTableState: () =>
|
||||
dispatch(resetVendorsCreditNoteTableState()),
|
||||
});
|
||||
|
||||
export default connect(null, mapDispatchToProps);
|
||||
Reference in New Issue
Block a user