# Radio Group [component-header:sl-radio-group] Radio Groups are used to group multiple radios so they function as a single control. ```html preview Option 1 Option 2 Option 3 ``` ```jsx react import { SlRadio, SlRadioGroup } from '@shoelace-style/shoelace/dist/react'; const App = () => ( Option 1 Option 2 Option 3 ); ``` ## Examples ### Showing the Fieldset You can show a fieldset and legend that wraps the radio group using the `fieldset` attribute. ```html preview Option 1 Option 2 Option 3 ``` ```jsx react import { SlRadio, SlRadioGroup } from '@shoelace-style/shoelace/dist/react'; const App = () => ( Option 1 Option 2 Option 3 ); ``` [component-metadata:sl-radio-group]