minishouyin/node_modules/antd/es/typography/hooks/useMergedConfig.js

7 lines
323 B
JavaScript
Raw Permalink Normal View History

2025-11-12 11:35:57 +08:00
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]);
}