Appearance
Function: CheckboxList()
ts
function CheckboxList(props: UiCheckboxListFieldProps): Block;Defined in: src/renderer/blocks/index.ts:826
Parameters
| Parameter | Type |
|---|---|
props | UiCheckboxListFieldProps |
Returns
Deprecated
Use CheckboxListField instead — names now match the underlying UiCheckboxListField component.
Example
ts
CheckboxListField({
name: 'interests',
label: 'Interests',
items: [
{value: 'sports', label: 'Sports'},
{value: 'music', label: 'Music'},
],
});