UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

7 lines 223 B
import { isFunction, isReactRenderable } from './is'; export const getRenderPropValue = propValue => { if (!isReactRenderable(propValue)) { return null; } return isFunction(propValue) ? propValue() : propValue; };