import React from "react"; import type { ScrollViewProps } from "react-native"; import Animated from "react-native-reanimated"; import { SceneComponent } from "./scene"; type TabScrollViewProps = ScrollViewProps & { index: number; }; function TabFlashListScrollViewComponent( props: TabScrollViewProps, ref: React.Ref ) { return ( ); } export const TabFlashListScrollView = React.forwardRef( TabFlashListScrollViewComponent );