1 import { createHooks } from '@proton/redux-utilities';
3 import { countriesByProviderThunk, selectCountriesByProvider } from '../slices/countriesByProvider';
5 const hooks = createHooks(countriesByProviderThunk, selectCountriesByProvider);
7 export const useCountriesByProvider = hooks.useValue;
8 export const useGetCountriesByProvider = hooks.useGet;