UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

10 lines 317 B
import * as React from 'react'; export default function useMergedConfig(propConfig, templateConfig) { return React.useMemo(() => { const support = !!propConfig; return [support, { ...templateConfig, ...(support && typeof propConfig === 'object' ? propConfig : null) }]; }, [propConfig]); }