mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 01:40:12 +01:00
16 lines
402 B
TypeScript
16 lines
402 B
TypeScript
import React from 'react';
|
|
import { HandOffComponentProps } from './types';
|
|
|
|
const HandOffComponent: React.FC<HandOffComponentProps> = props => {
|
|
console.debug('HandOffComponent render.');
|
|
return null;
|
|
};
|
|
|
|
export const setIsHandOffUseEnabled = async (value: boolean) => {};
|
|
|
|
export const getIsHandOffUseEnabled = async (): Promise<boolean> => {
|
|
return false;
|
|
};
|
|
|
|
export default HandOffComponent;
|