BlueWallet/hooks/useDeviceQuickActions.windows.ts
2024-11-14 11:30:19 -04:00

18 lines
352 B
TypeScript

export const DeviceQuickActionsStorageKey = 'DeviceQuickActionsEnabled';
export const setEnabled = (): void => {};
export const getEnabled = async (): Promise<boolean> => {
return false;
};
const useDeviceQuickActions = () => {
const popInitialAction = (): void => {};
return { popInitialAction };
};
export default useDeviceQuickActions;