1
0
Fork 0
mirror of https://github.com/BlueWallet/BlueWallet.git synced 2025-03-16 20:21:35 +01:00
BlueWallet/components/WidgetCommunication.tsx
Marcos Rodriguez Vélez 6b7887d3d7
REF: WidgetCommunication to TSX ()
* REF: WidgetCommunication to TSX

* Update WidgetCommunication.ios.tsx

* Update WidgetCommunication.ios.tsx

* Update WalletInformationWidget.swift
2024-04-09 14:37:10 -04:00

15 lines
400 B
TypeScript

import React from 'react';
export const isBalanceDisplayAllowed = async (): Promise<boolean> => {
return true;
};
export const setBalanceDisplayAllowed = async (value: boolean): Promise<void> => {};
export const reloadAllTimelines = (): void => {};
const WidgetCommunication: React.FC = () => {
return null; // This component does not render anything.
};
export default WidgetCommunication;