UNPKG

dmn-js-decision-table-custom-z

Version:

A decision table view for dmn-js

14 lines 479 B
import { createComponentVNode } from "inferno"; import { Cell } from 'table-js/lib/components'; export default function AnnotationCell(props) { var row = props.row; var _row$businessObject = row.businessObject, id = _row$businessObject.id, description = _row$businessObject.description; return createComponentVNode(2, Cell, { "className": "annotation", "elementId": id, children: description || '-' }); } //# sourceMappingURL=AnnotationCell.js.map