UNPKG

160 BJavaScriptView Raw
1export const getRenderPropValue = propValue => {
2 if (!propValue) {
3 return null;
4 }
5 return typeof propValue === 'function' ? propValue() : propValue;
6};
\No newline at end of file