# 基本使用 - order: 0 基本使用。 --- ````jsx import { Select } from 'antd'; const Option = Select.Option; function handleChange(value) { console.log(`selected ${value}`); } ReactDOM.render(
, mountNode); ````