import { Pressable, Text } from 'react-native'; import { styles } from './ButtonStyles'; type Props = { title: string | undefined; onPress?: () => void; backgroundColor?: string | undefined; textColor?: string | undefined; }; const Button = (props: Props) => { return ( {props.title || 'Press Here'} ); }; export default Button;