import React from "react"; import styles from "./index.less"; import { Mentions } from "antd"; const { Option } = Mentions; function onChange(value) { console.log("Change:", value); } function onSelect(option) { console.log("select", option); } export default () => (
);