Skip to content

Function: SelectField()

ts
function SelectField(props: SelectProps): Block;

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

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