antd-hz
Version:
华卓科技基于 antd 5.0 定制的组件库
7 lines • 323 B
JavaScript
import * as React from 'react';
export default function useMergedConfig(propConfig, templateConfig) {
return React.useMemo(() => {
const support = !!propConfig;
return [support, Object.assign(Object.assign({}, templateConfig), support && typeof propConfig === 'object' ? propConfig : null)];
}, [propConfig]);
}