2024-04-03 03:50:19 +02:00
|
|
|
import React from 'react';
|
2024-06-04 21:02:12 +02:00
|
|
|
import { HandOffComponentProps } from './types';
|
2024-04-03 03:50:19 +02:00
|
|
|
|
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.');
|
2024-04-03 03:50:19 +02:00
|
|
|
return null;
|
|
|
|
};
|
|
|
|
|
2024-04-25 03:32:37 +02:00
|
|
|
export const setIsHandOffUseEnabled = async (value: boolean) => {};
|
|
|
|
|
|
|
|
export const getIsHandOffUseEnabled = async (): Promise<boolean> => {
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
2024-04-03 03:50:19 +02:00
|
|
|
export default HandOffComponent;
|