mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
9 lines
283 B
JavaScript
9 lines
283 B
JavaScript
function WidgetCommunication(props) {
|
|
WidgetCommunication.isBalanceDisplayAllowed = () => {};
|
|
WidgetCommunication.setBalanceDisplayAllowed = () => {};
|
|
WidgetCommunication.reloadAllTimelines = () => {};
|
|
return new WidgetCommunication();
|
|
}
|
|
|
|
export default WidgetCommunication;
|