import React, { PropsWithChildren } from 'react' import { StyleSheet, View, ViewStyle, StyleProp } from 'react-native' interface IRowProps extends PropsWithChildren { style?: StyleProp } export const ScreenContainer = ({ children, style, ...rest }: IRowProps) => ( {children} ) const styles = StyleSheet.create({ container: { flex: 1, }, })