import { html } from 'lit-html';
import { IColumns, IDataRow } from '../interfaces';
import { eventIF } from '../eventIF';
export function rowNumberColumnElement(
colStyle: string,
col: IColumns,
updateCallback: Function,
_data: IDataRow
) {
return html`
`;
}