dmn-js-decision-table
Version:
A decision table view for dmn-js
17 lines • 411 B
JavaScript
import { createComponentVNode } from "inferno";
import { Cell } from 'table-js/lib/components';
export default function AnnotationCell(props) {
const {
row
} = props;
const {
id,
description
} = row.businessObject;
return createComponentVNode(2, Cell, {
"className": "annotation",
"elementId": id,
children: description || '-'
});
}
//# sourceMappingURL=AnnotationCell.js.map