BlueWallet/hooks/useDeviceQuickActions.windows.ts

18 lines
352 B
TypeScript
Raw Normal View History

2024-11-14 16:30:19 +01:00
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;