6 lines
160 B
JavaScript
6 lines
160 B
JavaScript
|
|
export const getRenderPropValue = propValue => {
|
||
|
|
if (!propValue) {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
return typeof propValue === 'function' ? propValue() : propValue;
|
||
|
|
};
|