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