import type { PropsWithChildren } from 'react'; import * as React from 'react'; import { StyleSheet } from 'react-native'; import GestureHandlerRootViewContext from '../GestureHandlerRootViewContext'; import type { RootViewNativeProps } from '../specs/RNGestureHandlerRootViewNativeComponent'; import GestureHandlerRootViewNativeComponent from '../specs/RNGestureHandlerRootViewNativeComponent'; export interface GestureHandlerRootViewProps extends PropsWithChildren {} export default function GestureHandlerRootView({ style, ...rest }: GestureHandlerRootViewProps) { return ( ); } const styles = StyleSheet.create({ container: { flex: 1 }, });