import React from 'react'; import { Mentions, Space } from 'antd'; import type { OptionProps } from 'antd/es/mentions'; const { Option } = Mentions; const onChange = (value: string) => { console.log('Change:', value); }; const onSelect = (option: OptionProps) => { console.log('select', option); }; const App: React.FC = () => { const options = ( <> ); return ( {options} {options} ); }; export default App;