mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
981 B
981 B
category | type | cols | title |
---|---|---|---|
Components | Other | 1 | 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, In the render tree all components will have access to the provided config.
import { ConfigProvider } from 'antd';
// ...
return (
<ConfigProvider {...yourConfig}>
<App />
</ConfigProvider>
);
API
Property | Description | Type | Default |
---|---|---|---|
customizeRenderEmpty | set empty content of components. Ref Empty | Function(componentName: string): ReactNode | - |
getPopupContainer | to set the container of the popup element. The default is to create a div element in body . |
Function(triggerNode) | () => document.body |
prefixCls | set prefix class | string | ant |