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: { title: { color: 'black', fontSize: 16, fontFamily: '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}`}