import React, { ReactElement } from 'react' import { View, StyleSheet, StyleProp, ViewStyle } from 'react-native' interface IRowProps { children: ReactElement style?: StyleProp } export const Row = ({ style, children }: IRowProps) => {children} const styles = StyleSheet.create({ row: { flexDirection: 'row', }, })