import * as React from "react"; import * as Table from "reactabular-table"; export interface Props { columns: Table.Column[]; rows: any[]; } class ReactabularTableTestComponent extends React.Component { constructor(props: Props) { super(props); } renderers: Table.Renderers = { header: { cell: undefined, }, body: { row: (props: any) => , }, }; render() { return
; } } export default ReactabularTableTestComponent;