in src/ui/output/LogicOutputDropdown.js [68:90]
render() {
return (
<div>
<FormGroup row>
<Label for="combination" sm={2}>
{' '}
Available Combinations{' '}
</Label>
<Col sm={2}>
<Input
type="select"
name="combination"
id="exampleSelect"
onChange={this.handleChange}
>
{' '}
{this.createOptions()}{' '}
</Input>{' '}
</Col>{' '}
</FormGroup>
</div>
);
}