const React = require('react'); const { PureComponent } = require('react'); const testIDs = require('../testIDs'); const { View, Text, Button } = require('react-native'); const { Navigation } = require('react-native-navigation'); class TopTabOptionsScreen extends PureComponent { static get options() { return { topBar: { textColor: 'black', textFontSize: 16, textFontFamily: 'HelveticaNeue-Italic' } }; } constructor(props) { super(props); this.onClickDynamicOptions = this.onClickDynamicOptions.bind(this); } render() { return ( {this.props.text || 'Top Tab Screen'} {`this.props.componentId = ${this.props.componentId}`}