import * as React from 'react'; let tabData = ''; export const MyCommandCell = (props) => { const { dataItem } = props; const inEdit = dataItem[props.editField]; const isNewItem = dataItem.id === undefined; return ( {inEdit ? ( <> ) : ( <> )} ); }; export const setCommandCell = (tabName) => { tabData = tabName; };