/** * The HTML structure here is aligned with bootstrap HTML structure for form elements. * In this way we have proper styling and it is aligned with other form elements on screen. * * Select and MultiSelect options: * * label - the label to be shown which paired with the input * * all other "react-select" props - as documented on * http://jedwatson.github.io/react-select/ * or * https://github.com/JedWatson/react-select */ import React, {Component} from 'react'; import Select from 'react-select'; class SelectInput extends Component { inputValue = []; render() { let {label, value, ...other} = this.props; return (
{label && }