1 import { createHooks } from '@proton/redux-utilities';
3 import { calendarsThunk, selectCalendars } from './index';
5 const hooks = createHooks(calendarsThunk, selectCalendars);
7 export const useCalendars = hooks.useValue;
8 export const useGetCalendars = hooks.useGet;