import React from 'react' import { StyleSheet, Text, TouchableOpacity, View } from 'react-native' interface ButtonProps { text: string onPress: () => void } const Button = ({ text, onPress }: ButtonProps) => ( {text} ) const styles = StyleSheet.create({ button: { backgroundColor: 'black', margin: 10, height: 44, paddingLeft: 10, paddingRight: 10, borderRadius: 10, alignItems: 'center', justifyContent: 'center', }, text: { color: 'white', }, }) export default Button