mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-21 08:29:18 +08:00
29 lines
622 B
TypeScript
29 lines
622 B
TypeScript
|
import React from 'react';
|
||
|
import { Mentions } 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 = () => (
|
||
|
<Mentions
|
||
|
style={{ width: '100%' }}
|
||
|
onChange={onChange}
|
||
|
onSelect={onSelect}
|
||
|
defaultValue="@afc163"
|
||
|
>
|
||
|
<Option value="afc163">afc163</Option>
|
||
|
<Option value="zombieJ">zombieJ</Option>
|
||
|
<Option value="yesmeck">yesmeck</Option>
|
||
|
</Mentions>
|
||
|
);
|
||
|
|
||
|
export default App;
|