mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-06 02:15:35 +08:00
23 lines
549 B
TypeScript
23 lines
549 B
TypeScript
|
import React from 'react';
|
||
|
import { Select } from 'antd';
|
||
|
|
||
|
const { Option, OptGroup } = Select;
|
||
|
|
||
|
const handleChange = (value: string) => {
|
||
|
console.log(`selected ${value}`);
|
||
|
};
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Select defaultValue="lucy" style={{ width: 200 }} onChange={handleChange}>
|
||
|
<OptGroup label="Manager">
|
||
|
<Option value="jack">Jack</Option>
|
||
|
<Option value="lucy">Lucy</Option>
|
||
|
</OptGroup>
|
||
|
<OptGroup label="Engineer">
|
||
|
<Option value="Yiminghe">yiminghe</Option>
|
||
|
</OptGroup>
|
||
|
</Select>
|
||
|
);
|
||
|
|
||
|
export default App;
|