about summary refs log tree commit diff
path: root/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx
blob: 0f5d01c130b7a8e3c8592973118aedd2529fdaf2 (plain) (blame)
1
2
3
4
5
6
7
8
9
import React from 'react'

import {ExpoScrollForwarderViewProps} from './ExpoScrollForwarder.types'

export function ExpoScrollForwarderView({
  children,
}: React.PropsWithChildren<ExpoScrollForwarderViewProps>) {
  return children
}