import React from 'react'; import { ButtonGroup } from 'react-native-elements'; import { StyleSheet, Text } from 'react-native'; const ButtonsForm = (props) => { const component1 = () => {props.group[0]} const component2 = () => {props.group[1]} return ( ); }; const style = StyleSheet.create({ container: { height: 50, flexDirection: 'row', alignItems: "center", backgroundColor: "#f5f5f5", }, text: { color: "#808080", fontSize: 24 }, selectedButton: { backgroundColor: "#adadad", }, selectedText: { color: "#1467ff", fontWeight: "bold", }, }) export default ButtonsForm