1 import { createHooks } from '@proton/redux-utilities';
3 import { fiatCurrenciesByProviderThunk, selectFiatCurrenciesByProvider } from '../slices/fiatCurrenciesByProvider';
5 const hooks = createHooks(fiatCurrenciesByProviderThunk, selectFiatCurrenciesByProvider);
7 export const useFiatCurrenciesByProvider = hooks.useValue;
8 export const useGetFiatCurrenciesByProvider = hooks.useGet;