import React, { Component } from 'react'; import sharedStyles from '../shared-styles'; import { TouchableHighlight, Platform, StyleSheet, Text, View } from 'react-native'; export default class NewButton extends Component { constructor(props) { super(props); this.erase = this.props.erase; this.state = { value: this.props.value}; } formatValue() { return this.state.value; } render() { return ( this.erase()} // style={sharedStyles.new} > New ) } }