about summary refs log tree commit diff
path: root/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx
blob: 93e69333fddc62dc93d1d4e40bb4725093563484 (plain) (blame)
1
2
3
4
5
6
7
import React from 'react'
import {ExpoScrollForwarderViewProps} from './ExpoScrollForwarder.types'
export function ExpoScrollForwarderView({
  children,
}: React.PropsWithChildren<ExpoScrollForwarderViewProps>) {
  return children
}