import React from 'react'; import { Pressable, Text, View } from 'react-native'; import { styles } from '../styles'; export default function ChipGroup({ options, value, onChange }) { return ( {options.map((option) => { const active = value === option; return ( onChange(option)}> {option} ); })} ); }