Files
bigcapital/packages/webapp/src/store/ExchangeRate/exchange.actions.tsx
2023-02-03 01:02:31 +02:00

10 lines
192 B
TypeScript

// @ts-nocheck
import t from '@/store/types';
export const setExchangeRateTableState = (queries) => {
return {
type: t.EXCHANGE_RATES_TABLE_STATE_SET,
payload: { queries },
};
};