import { TouchableOpacity, type StyleProp, type ViewStyle } from 'react-native'; import React, { type ReactNode } from 'react'; type Props = { flex?: number; children: ReactNode; styles?: StyleProp; onPress?: () => void; }; const Col = (props: Props) => { const { flex, children, styles, onPress } = props; return ( {children} ); }; export default Col;