import React from "react"; import styles from "./index.less"; import { Select } from "antd"; const { Option } = Select; function handleChange(value) { console.log(value); // { key: "lucy", label: "Lucy (101)" } } export default () => (
);