BlueWallet/components/HandOffComponent.tsx

16 lines
408 B
TypeScript
Raw Normal View History

import React from 'react';
2024-06-04 21:02:12 +02:00
import { HandOffComponentProps } from './types';
2024-06-04 21:02:12 +02:00
const HandOffComponent: React.FC<HandOffComponentProps> = props => {
console.debug('HandOffComponent: props', props);
return null;
};
export const setIsHandOffUseEnabled = async (value: boolean) => {};
export const getIsHandOffUseEnabled = async (): Promise<boolean> => {
return false;
};
export default HandOffComponent;