var React = require('react-native'); var { PixelRatio, StyleSheet, Text, TouchableHighlight, View, } = React; // TODO -- style this! class NavButton extends React.Component { render() { return ( {this.props.text} ); } } var styles = StyleSheet.create({ button: { backgroundColor: 'white', padding: 15, borderBottomWidth: 1 / PixelRatio.get(), borderBottomColor: '#CDCDCD', }, }); module.exports = NavButton;