mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
14 lines
349 B
TypeScript
14 lines
349 B
TypeScript
import React from 'react';
|
|
|
|
export const isBalanceDisplayAllowed = async (): Promise<boolean> => {
|
|
return true;
|
|
};
|
|
|
|
export const setBalanceDisplayAllowed = async (value: boolean): Promise<void> => {};
|
|
|
|
const WidgetCommunication: React.FC = () => {
|
|
return null; // This component does not render anything.
|
|
};
|
|
|
|
export default WidgetCommunication;
|