1 import { createHooks } from '@proton/redux-utilities';
3 import { organizationKeyThunk, selectOrganizationKey } from './index';
5 const hooks = createHooks(organizationKeyThunk, selectOrganizationKey);
7 export const useOrganizationKey = hooks.useValue;
8 export const useGetOrganizationKey = hooks.useGet;