@orfeas126/box-ui-elements
Version:
Box UI Elements
11 lines • 333 B
JavaScript
import { EMPTY_VALUE } from './constants';
const baseCellRenderer = ({
cellData
}, renderValue = String) => {
if (typeof cellData === 'undefined' || cellData === null || cellData === '') {
return EMPTY_VALUE;
}
return renderValue(cellData);
};
export default baseCellRenderer;
//# sourceMappingURL=baseCellRenderer.js.map