useAntdUiConfig
Sourceimport { useAntdUiConfig } from "@prestojs/ui-antd";
useAntdUiConfig()
Get the current AntdUiConfig provided by AntdUiProvider
function MyComponent(props) {const config = useAntdUiConfig();const DatePicker = config.getDatePicker();return <DatePicker {...props} >}
Returns