BlueWallet/components/HandOffComponent.tsx

16 lines
402 B
TypeScript
Raw Normal View History

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