You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
792 B
31 lines
792 B
6 years ago
|
---
|
||
|
category: Components
|
||
|
type: Other
|
||
|
cols: 1
|
||
|
title: ConfigProvider
|
||
|
---
|
||
|
|
||
|
`ConfigProvider` provides a uniform configuration support for components.
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
This component provides a configuration to all React components underneath itself via the [context API](https://facebook.github.io/react/docs/context.html), In the render tree all components will have access to the provided config.
|
||
|
|
||
|
```jsx
|
||
|
import { ConfigProvider } from 'antd';
|
||
|
|
||
|
// ...
|
||
|
|
||
|
return (
|
||
|
<ConfigProvider {...yourConfig}>
|
||
|
<App />
|
||
|
</ConfigProvider>
|
||
|
);
|
||
|
```
|
||
|
|
||
|
## API
|
||
|
|
||
|
| Property | Description | Type | Default |
|
||
|
| -------- | ----------- | ---- | ------- |
|
||
|
| getPopupContainer | to set the container of the popup element. The default is to create a `div` element in `body`. | Function(triggerNode) | `() => document.body` |
|