Radio Group
Styled radio buttons via RadioGroup, bound to a shared signal.
form radio
Usage
form.RadioGroup(form.RadioGroupProps{
Signal: "plan",
Name: "plan",
Options: []form.RadioOption{
{Value: "free", Label: "Free"},
{Value: "pro", Label: "Pro"},
{Value: "enterprise", Label: "Enterprise"},
},
})