Skip to content

Function: SelectField()

ts
function SelectField(props: SelectProps): Block;

Defined in: packages/sdk/src/renderer/blocks/index.ts:667

Select dropdown field.

Parameters

ParameterType
propsSelectProps

Returns

Block

Example

ts
SelectField({
  name: 'country',
  label: 'Country',
  items: [
    {value: 'us', label: 'United States'},
    {value: 'uk', label: 'United Kingdom'},
    {value: 'ca', label: 'Canada'},
  ],
});

Matterway Assistant SDK Documentation