at main 17 lines 384 B view raw
1import './Buttons.css'; 2 3export function ButtonGroup({ options, current, onChange }) { 4 return ( 5 <div className='button-group'> 6 {options.map(({val, label}) => ( 7 <button 8 key={val} 9 className={val === current ? 'current' : ''} 10 onClick={() => onChange(val)} 11 > 12 {label ?? val} 13 </button> 14 ))} 15 </div> 16 ); 17}