Appearance
Function: Select()
ts
function Select(props: SelectProps): Block;Defined in: src/renderer/blocks/index.ts:555
Parameters
| Parameter | Type |
|---|---|
props | SelectProps |
Returns
Deprecated
Use SelectField instead — names now match the underlying UiSelectField component.
Example
ts
SelectField({
name: 'country',
label: 'Country',
items: [
{value: 'us', label: 'United States'},
{value: 'uk', label: 'United Kingdom'},
],
});