import React from "react"; import styles from "./index.less"; import { Select } from "antd"; const { Option } = Select; const children = []; for (let i = 10; i < 36; i++) { children.push(); } function handleChange(value) { console.log(`selected ${value}`); } export default () => (
);