mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
28 lines
735 B
TypeScript
28 lines
735 B
TypeScript
import React from 'react';
|
|
import { Select, Space, Switch } from 'antd';
|
|
|
|
const { _InternalPanelDoNotUseOrYouWillBeFired: InternalSelect } = Select;
|
|
|
|
const App: React.FC = () => {
|
|
const [open, setOpen] = React.useState(true);
|
|
|
|
return (
|
|
<Space direction="vertical" style={{ display: 'flex' }}>
|
|
<Switch checked={open} onChange={() => setOpen(!open)} />
|
|
<InternalSelect
|
|
defaultValue="lucy"
|
|
style={{ width: 120 }}
|
|
open={open}
|
|
options={[
|
|
{ label: 'Jack', value: 'jack' },
|
|
{ label: 'Lucy', value: 'lucy' },
|
|
{ label: 'Disabled', value: 'disabled' },
|
|
{ label: 'Bamboo', value: 'bamboo' },
|
|
]}
|
|
/>
|
|
</Space>
|
|
);
|
|
};
|
|
|
|
export default App;
|