Manual Reference Source
import Dropdown from 'cloudify-stage/basic/Dropdown.js'
public class | source

Dropdown

Extends:

semantic-ui-react~Dropdown → Dropdown

Dropdown is a component which extends Dropdown component from Semantic-UI-React framework.

See Dropdown component from Semantic-UI-React framework for details about props and usage details.

Access

Stage.Basic.Form.Dropdown or Stage.Basic.Dropdown

Usage

let options = [
  {text: 'Option 1', value: 'option1'},
  {text: 'Option 2', value: 'option2'},
  {text: 'Option 3', value: 'option3'}
];
<Dropdown search selection options={options} value={options[0].value}/>

Dropdown_0

Dropdown_1