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