blob: 8f21f444bfafea6ad16f678b2b150e5641d79451 (
plain) (
blame)
1
2
3
4
5
6
7
|
import {createContext} from 'react'
import {Gesture} from 'react-native-gesture-handler'
// Not really used but serves as a fallback for types.
const noopGesture = Gesture.Native()
export const TrendingGestureContext = createContext(noopGesture)
|