import React, { FC } from "react"; import { Text, TouchableOpacity, View, ViewStyle } from "react-native"; type Props = { onPress: () => void; string: string; style?: ViewStyle; }; export const BigButton: FC = ({ onPress, string,style }) => { return ( {string} ); };