const React = require('react'); const { Component } = require('react'); const { View, Text, Button } = require('react-native'); const Navigation = require('react-native-navigation'); class TextScreen extends Component { render() { return ( {this.props.text || 'Text Screen'} {this.renderTextFromFunctionInProps()} {`this.props.containerId = ${this.props.containerId}`}