sccoreui
Version:
ui-sccore
10 lines (9 loc) • 365 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const jsx_runtime_1 = require("react/jsx-runtime");
function IdCell(data) {
var _a;
console.log(data.row, 'data from grid');
return ((0, jsx_runtime_1.jsx)("div", { children: (_a = data.row) === null || _a === void 0 ? void 0 : _a.id }));
}
exports.default = IdCell;