RadioButton
Usage
RadioButton.create [
RadioButton.content "Opt in to the newsletter"
]
RadioButton.create [
RadioButton.content "Opt out to the newsletter"
]RadioButton.create [
RadioButton.content "Opt in to the newsletter"
RadioButton.isChecked state.newsLetterOptIn
]RadioButton.create [
RadioButton.groupName "newsletter"
RadioButton.content "Opt in to the newsletter"
RadioButton.isChecked state.newsLetterOptIn
// remember to use OnChangeOf to give FuncUI hints about when to dispatch the messages
RadioButton.onChecked ((fun _ -> dispatch OptIn), OnChangeOf(state.newsLetterOptIn))
]
RadioButton.create [
RadioButton.groupName "newsletter"
RadioButton.content "Opt out to the newsletter"
RadioButton.isChecked (not state.newsLetterOptIn)
// remember to use OnChangeOf to give FuncUI hints about when to dispatch the messages
RadioButton.onChecked ((fun _ -> dispatch OptOut), OnChangeOf(state.newsLetterOptIn))
]Last updated