1
0
Fork 0
mirror of https://github.com/BlueWallet/BlueWallet.git synced 2025-03-17 20:40:49 +01:00
BlueWallet/hooks/useWidgetCommunication.ts
Marcos Rodriguez Velez 5a9e6452de wip
2024-11-08 21:59:39 -04:00

9 lines
266 B
TypeScript

const useWidgetCommunication = (): void => {};
export const isBalanceDisplayAllowed = async (): Promise<boolean> => {
return true;
};
export const setBalanceDisplayAllowed = async (_allowed: boolean): Promise<void> => {};
export default useWidgetCommunication;