import React from 'react'; import { View, Text, StyleSheet } from 'react-native'; export default class Environment { constructor(CS) { this.CoreSystem = CS; } render() { return Row Col {this.CoreSystem.render()} Col row } } const styles = StyleSheet.create({ container: { flex: 1, flexDirection: "column" }, mobileView: { backgroundColor: 'white', borderWidth: 4, borderColor: 'orange', flex:1, alignSelf: 'stretch', // iphone X width:1125/3, height: 2436/3 }, row: { flexDirection: "row", borderWidth: 1 }, col: { flexDirection: "column", borderWidth: 1 } });