mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
1.1 KiB
1.1 KiB
order | title | debug | ||||
---|---|---|---|---|---|---|
99 |
|
true |
zh-CN
支持 ConfigProvider 配置。
en-US
config by ConfigProvider.
import React, { useState, useRef } from 'react';
import { Drawer, ConfigProvider, Button } from 'antd';
const App: React.FC = () => {
const domRef = useRef<HTMLDivElement>(null);
const [visible, setVisible] = useState(false);
const showDrawer = () => {
setVisible(true);
};
const onClose = () => {
setVisible(false);
};
return (
<ConfigProvider getPopupContainer={() => domRef.current!}>
<div ref={domRef} className="site-drawer-render-in-current-wrapper">
<Button type="primary" onClick={showDrawer}>
Open
</Button>
<Drawer
style={{ position: 'absolute' }}
title="ConfigProvider"
placement="right"
onClose={onClose}
visible={visible}
>
<p>Some contents...</p>
<p>Some contents...</p>
<p>Some contents...</p>
</Drawer>
</div>
</ConfigProvider>
);
};
export default App;