const React = require('react'); const { Component } = require('react'); const { View, Text, Button, Platform } = require('react-native'); const { Navigation } = require('react-native-navigation'); const testIDs = require('../testIDs'); const Bounds = require('../components/Bounds'); class TextScreen extends Component { static get options() { return { bottomTabs: { drawBehind: true, testID: testIDs.BOTTOM_TABS_ELEMENT }, topBar: { testID: testIDs.TOP_BAR_ELEMENT } }; } render() { return ( {this.props.text || 'Text Screen'} {this.renderTextFromFunctionInProps()} {`this.props.componentId = ${this.props.componentId}`}