1 import { createHooks } from '@proton/redux-utilities';
3 import { allowAddressDeletionThunk, selectAllowAddressDeletion } from './index';
5 const hooks = createHooks(allowAddressDeletionThunk, selectAllowAddressDeletion);
7 export const useAllowAddressDeletion = hooks.useValue;
8 export const useGetAllowAddressDeletion = hooks.useGet;