import React from 'react'; | |
import { Mentions } from 'antd'; | |
const App: React.FC = () => ( | |
<Mentions | |
autoSize | |
style={{ width: '100%' }} | |
options={[ | |
{ | |
value: 'afc163', | |
label: 'afc163', | |
}, | |
{ | |
value: 'zombieJ', | |
label: 'zombieJ', | |
}, | |
{ | |
value: 'yesmeck', | |
label: 'yesmeck', | |
}, | |
]} | |
/> | |
); | |
export default App; | |