import React from 'react'; import { Text, View, TouchableHighlight } from 'react-native'; import styles from './Button.style'; export default ({title, onPress}) => { return ( {title} ); }