import Styles from "@/constants/Styles"; import { Text, TouchableOpacity } from "react-native"; type Props = { text: string; onPress: () => void; }; export function ButtonForm({ text, onPress }: Props) { return ( {text} ); }