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