mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
ff9237064d
* docs: update demo * test: Update snapshot
13 lines
261 B
TypeScript
13 lines
261 B
TypeScript
import React from 'react';
|
|
import { Checkbox, Popover } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<div style={{ padding: 56 }}>
|
|
<Popover content="xxxx" trigger="hover">
|
|
<Checkbox disabled checked />
|
|
</Popover>
|
|
</div>
|
|
);
|
|
|
|
export default App;
|