mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 11:54:27 +00:00
19 lines
389 B
TypeScript
19 lines
389 B
TypeScript
import React from 'react';
|
|
|
|
export type RenderFunction = () => React.ReactNode;
|
|
|
|
export const getRenderPropValue = (
|
|
propValue?: React.ReactNode | RenderFunction,
|
|
): React.ReactNode => {
|
|
if (!propValue) {
|
|
return null;
|
|
}
|
|
|
|
const isRenderFunction = typeof propValue === 'function';
|
|
if (isRenderFunction) {
|
|
return (propValue as RenderFunction)();
|
|
}
|
|
|
|
return propValue;
|
|
};
|