blob: 5d6d53369c1722fca4d4700e3232d4d5eee7b291 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
export function GlobalGestureEventsProvider(_props: {
children: React.ReactNode
}) {
throw new Error('GlobalGestureEventsProvider is not supported on web.')
}
export function useGlobalGestureEvents() {
throw new Error('useGlobalGestureEvents is not supported on web.')
}
|