import * as React from "react"; import { View, StyleSheet, StyleProp, ViewStyle } from "react-native"; type Props = { style?: StyleProp, children?: React.ReactNode, } const ContainerFluid = ({ style, children, }: Props) => { return ( {children} ); }; export default ContainerFluid; const styles = StyleSheet.create({ container: { display: "flex", flexDirection: "column", flexWrap: "nowrap", width: "100%", backgroundColor: "transparent", }, });