import React from "react"; import { View, TouchableOpacity, Text, StyleSheet } from "react-native"; const styles = StyleSheet.create({ button: { backgroundColor: "rgba(255, 255, 255, 0.3)", borderRadius: 10, paddingHorizontal: 10, paddingVertical: 10, alignItems: "center", justifyContent: "center", width: "100%", marginTop: 20 }, text: { color: "#fff", fontSize: 20, textAlign: "center" }, buttonContainer: { flexDirection: "row", flexWrap: "wrap", marginTop: 10, justifyContent: "space-between" } }); export const Button = ({ text, onPress = () => {} }) => ( {text} ); export const ButtonContainer = ({ children }) => ( {children} );