Skip to content

Function: Select()

ts
function Select(props: SelectProps): Block;

Defined in: src/renderer/blocks/index.ts:555

Parameters

ParameterType
propsSelectProps

Returns

Block

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'},
  ],
});

Matterway Assistant SDK Documentation