--- order: 0 title: zh-CN: 基本使用 en-US: Basic --- ## zh-CN 基本使用 ## en-US Basic usage. ````jsx import { Mention } from 'antd'; const { toString, toEditorState } = Mention; function onChange(editorState) { console.log(toString(editorState)); } function onSelect(suggestion) { console.log('onSelect', suggestion); } ReactDOM.render( , mountNode); ````