mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
10 lines
319 B
JavaScript
10 lines
319 B
JavaScript
import { connect } from 'react-redux';
|
|
import { setExchangeRateTableState } from 'store/ExchangeRate/exchange.actions';
|
|
|
|
export const mapDispatchToProps = (dispatch) => ({
|
|
setExchangeRateTableState: (queries) =>
|
|
dispatch(setExchangeRateTableState(queries)),
|
|
});
|
|
|
|
export default connect(null, mapDispatchToProps);
|