import { ScrollView as RNScrollView } from "react-native"; import type { ScrollView } from "./types"; import React from "react"; import { Render } from "./Render"; const ScrollViewImpl: React.FC = (props: ScrollView) => { const { orientation, items, contexts, style } = props return ( {items?.map((child, index) => { const childWithContext = { ...child, contexts: contexts }; return ; })} ) } export default ScrollViewImpl;