Files
bigcapital/packages/webapp/src/containers/ExchangeRates/withExchangeRatesActions.tsx
2023-02-03 01:02:31 +02:00

11 lines
336 B
TypeScript

// @ts-nocheck
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);