const React = require('react'); const { Component } = require('react'); const { View, Text, Button } = require('react-native'); const Navigation = require('react-native-navigation'); const testIDs = require('../testIDs'); class TextScreen extends Component { static get navigationOptions() { return { bottomTabs: { testID: testIDs.BOTTOM_TABS_ELEMENT } }; } render() { return ( {this.props.text || 'Text Screen'} {this.renderTextFromFunctionInProps()} {`this.props.containerId = ${this.props.containerId}`}