import { StyleSheet, View, ViewStyle } from 'react-native' import React from 'react' const Row = ({children, style}:{children: any, style: ViewStyle}) => { return ( {children} ) } export default Row const styles = StyleSheet.create({ container: { flexDirection: "row", } })