BlueWallet/components/HandOffComponent.tsx
Marcos Rodriguez Velez 63739dd86a wip
2024-10-31 22:25:47 -04:00

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;