BlueWallet/components/HandOffComponent.tsx

16 lines
402 B
TypeScript
Raw Permalink 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 => {
2024-11-01 03:25:47 +01:00
console.debug('HandOffComponent render.');
return null;
};
export const setIsHandOffUseEnabled = async (value: boolean) => {};
export const getIsHandOffUseEnabled = async (): Promise<boolean> => {
return false;
};
export default HandOffComponent;