import React from "react"; import styles from "./index.less"; import { Select, Typography, Divider } from "antd"; const { Title } = Typography; const options = []; for (let i = 0; i < 100000; i++) { const value = `${i.toString(36)}${i}`; options.push({ value, disabled: i === 10 }); } function handleChange(value) { console.log(`selected ${value}`); } export default () => (