mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 05:05:48 +08:00
37 lines
741 B
TypeScript
37 lines
741 B
TypeScript
import React from 'react';
|
|
import type { SelectProps } from 'antd';
|
|
import { Select, Typography } from 'antd';
|
|
|
|
const { Title } = Typography;
|
|
|
|
const options: SelectProps['options'] = [];
|
|
|
|
for (let i = 0; i < 100000; i++) {
|
|
const value = `${i.toString(36)}${i}`;
|
|
options.push({
|
|
label: value,
|
|
value,
|
|
disabled: i === 10,
|
|
});
|
|
}
|
|
|
|
const handleChange = (value: string[]) => {
|
|
console.log(`selected ${value}`);
|
|
};
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<Title level={4}>{options.length} Items</Title>
|
|
<Select
|
|
mode="multiple"
|
|
style={{ width: '100%' }}
|
|
placeholder="Please select"
|
|
defaultValue={['a10', 'c12']}
|
|
onChange={handleChange}
|
|
options={options}
|
|
/>
|
|
</>
|
|
);
|
|
|
|
export default App;
|