1
0
Fork 0
mirror of https://github.com/BlueWallet/BlueWallet.git synced 2025-03-15 03:51:07 +01:00
BlueWallet/components/HandOffComponent.tsx
Marcos Rodriguez Velez 63739dd86a wip
2024-10-31 22:25:47 -04:00

15 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;