BlueWallet/components/HandOffComponent.tsx
2024-06-04 15:02:12 -04:00

16 lines
408 B
TypeScript

import React from 'react';
import { HandOffComponentProps } from './types';
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;