box-ui-elements-mlh
Version:
14 lines (11 loc) • 431 B
JavaScript
// @flow
import type { Node } from 'react';
import { EMPTY_VALUE } from './constants';
import type { CellRendererParams } from './flowTypes';
const baseCellRenderer = ({ cellData }: CellRendererParams, renderValue: any => Node = String) => {
if (typeof cellData === 'undefined' || cellData === null || cellData === '') {
return EMPTY_VALUE;
}
return renderValue(cellData);
};
export default baseCellRenderer;