Sorry, but you either have no stories or none are selected somehow.
If the problem persists, check the browser console, or the terminal you've run Storybook from.
Radio inputs allow the user to select one item from a set.
() => { const [selectedColor, setSelectedColor] = useState<(typeof weather)[number] | undefined>(undefined); return ( <div> <RadioGroup name="selected-weather" onChange={(v) => setSelectedColor(v)} value={selectedColor} options={weather.map((option) => ({ value: option, label: option }))} /> </div> ); }