Показать сообщение отдельно
  #2 (permalink)  
Старый 11.07.2018, 14:29
Аватар для SuperZen
Профессор
Отправить личное сообщение для SuperZen Посмотреть профиль Найти все сообщения от SuperZen
 
Регистрация: 08.11.2017
Сообщений: 642

class DropList extends React.Component {
	constructor(props){
	  super(props);
    this.state = {
      options: [1,2,3]
    }
  }
  render() {
    return <select>{this.state.options.map((option, idx) => <option key={idx}>{option}</option>)}</select>
  }
}
ReactDOM.render(<DropList />, document.getElementById('root'))
Ответить с цитированием