import React from "react"; export function ButtonSelect({ options, value, onChange }: { options: { value: T; text: string }[]; value: T | null; onChange: (value: T) => void; }) { return (
{options.map(option => ( ))}
); }