UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

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