about summary refs log tree commit diff
path: root/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx')
-rw-r--r--modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx7
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx b/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx
new file mode 100644
index 000000000..93e69333f
--- /dev/null
+++ b/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx
@@ -0,0 +1,7 @@
+import React from 'react'
+import {ExpoScrollForwarderViewProps} from './ExpoScrollForwarder.types'
+export function ExpoScrollForwarderView({
+  children,
+}: React.PropsWithChildren<ExpoScrollForwarderViewProps>) {
+  return children
+}