mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-24 07:28:07 +01:00
14 lines
267 B
JavaScript
14 lines
267 B
JavaScript
|
function DeviceQuickActions() {
|
||
|
DeviceQuickActions.STORAGE_KEY = 'DeviceQuickActionsEnabled';
|
||
|
|
||
|
DeviceQuickActions.setEnabled = () => {};
|
||
|
|
||
|
DeviceQuickActions.getEnabled = async () => {
|
||
|
return false;
|
||
|
};
|
||
|
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
export default DeviceQuickActions;
|