1
0
Fork 0
mirror of https://github.com/BlueWallet/BlueWallet.git synced 2025-03-14 19:40:45 +01:00
BlueWallet/hooks/useDeviceQuickActions.windows.ts
2024-11-14 11:30:19 -04:00

17 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;