mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:51:48 +08:00
76434a15df
* chore(🆙): upgrade devDeps
* prettier code
* fix dnd demo
* fix react-dnd demo
* fix npm start and demo tsx compile
* fix snapshot
54 lines
1.1 KiB
Markdown
54 lines
1.1 KiB
Markdown
---
|
|
order: 99
|
|
title:
|
|
zh-CN: ConfigProvider
|
|
en-US: ConfigProvider
|
|
debug: true
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
支持 ConfigProvider 配置。
|
|
|
|
## en-US
|
|
|
|
config by ConfigProvider.
|
|
|
|
```tsx
|
|
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>
|
|
);
|
|
};
|
|
|
|
ReactDOM.render(<App />, mountNode);
|
|
```
|