UNPKG

react-toolbox

Version:
11 lines (9 loc) 359 B
const RadioTest = () => ( <RadioGroup name='comic' value='vvendetta'> <RadioButton label='The Walking Dead' value='thewalkingdead'/> <RadioButton label='From Hell' value='fromhell' disabled/> <RadioButton label='V for a Vendetta' value='vvendetta'/> <RadioButton label='Watchmen' value='watchmen'/> </RadioGroup> ); return <RadioTest />;