UICheckbox
Name
Type
Default
Description
Example
import {UICheckbox} from 'writer'
render($$) {
const el = $$('div')
return el.append(
$$(UICheckbox, {
id: 'myCheckbox',
label: this.getLabel('Checky checkbox'),
checkboxPosition: 'right'
checked: true,
onChange: (checked) => {
// Do something
}
})
)
}