mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 08:59:40 +08:00
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;
|