import React from "react"; import type { View } from "./types"; import { View as RNView } from "react-native"; import { Render } from "./Render"; const ViewImpl: React.FC = (props: View) => { const { viewProps, children, contexts } = props; return ( {children?.map((child, index) => { const childWithContext = { ...child, contexts: contexts }; return ; })} ); }; export default ViewImpl;