viewof form = Inputs.form({
option1: Inputs.checkbox(["A", "B"], { label: "Select some" }),
option2: Inputs.range([0, 100], { label: "Amount", step: 1 }),
option3: Inputs.radio(["A", "B"], { label: "Select one" }),
option4: Inputs.select(["Male", "Female"], { label: "Select one" })
})