Radio and checkboxes can exist on their own, or you can include them in a question group.
<Form action="/test" onSubmit={this.handleSubmit}> <TextInput name="first_name" label="First Name" /> <QuestionGroup question="Do you agree to this?" required={true}> <RadioInput name="agreement" label="Yes" /> <RadioInput name="agreement" label="No" /> </QuestionGroup> <Submit /> </Form>
There was an error while loading. Please reload this page.