import React, { Component } from 'react' import { View, Text, TouchableOpacity, } from 'react-native' import styles from '../../styles' export default class SelectBox extends Component { render () { const style = [styles.selectBox] const textStyle = [] if (this.props.value) { style.push(styles.selectBoxActive) textStyle.push(styles.selectBoxTextActive) } return ( {this.props.label} ) } }