mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 15:19:58 +08:00
5cc54947a1
* feat: Dropdown support PurePanel * chore: clean up * docs: init * feat: Mentions PurePanel * test: Update snapshot * chore: clean up
644 B
644 B
order | title | debug | ||||
---|---|---|---|---|---|---|
999 |
|
true |
zh-CN
调试用组件,请勿直接使用。
en-US
Debug usage. Do not use in your production.
import { Mentions } from 'antd';
import React from 'react';
const { Option } = Mentions;
const { _InternalPanelDoNotUseOrYouWillBeFired: InternalMentions } = Mentions;
const App: React.FC = () => (
<InternalMentions style={{ width: '100%' }} value="@">
<Option value="afc163">afc163</Option>
<Option value="zombieJ">zombieJ</Option>
</InternalMentions>
);
export default App;