mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
16 lines
318 B
JavaScript
16 lines
318 B
JavaScript
function DeviceQuickActions() {
|
|
DeviceQuickActions.STORAGE_KEY = 'DeviceQuickActionsEnabled';
|
|
|
|
DeviceQuickActions.setEnabled = () => {};
|
|
|
|
DeviceQuickActions.getEnabled = async () => {
|
|
return false;
|
|
};
|
|
|
|
DeviceQuickActions.popInitialAction = () => {};
|
|
|
|
return null;
|
|
}
|
|
|
|
export default DeviceQuickActions;
|