import React from 'react';
import { GestureProviderProps } from '../types';
import { GHContext } from '../contexts';
import ScreenGestureDetector from './ScreenGestureDetector';
function GHWrapper(props: GestureProviderProps) {
return ;
}
export default function GestureDetectorProvider(props: {
children: React.ReactNode;
}) {
return (
{props.children}
);
}