RadioGroup
READY
COLOR
COLUMNS
OPTIONAL
HELP TEXT
DISABLED
768px
const options = [{label: "Yes",value: "yes",},{label: "No",value: "no",},{label: "Maybe",value: "maybe",},{label: "Not sure",value: "not-sure",},{label: "Can't tell",value: "cant-tell",},]function App() {const initialValues = {hungry: "",}return (<Form initialValues={initialValues}><RadioGroupname="hungry"label="Are you hungry?"options={options}/></Form>)}render(<App />)