Virtualized and extendable tables and datagrids for React
Tablex
virtualized and extendable tables and datagrids for React.
Install
yarn add tablex
import React, { Component } from "react";
import Table, { flatten, unflatten } from "tablex";
class Demo extends Component {
state = {
data: [],
columns: []
};
render() {
return (
<Table rowKey="id" columns={this.state.columns} data={this.state.data} />
);
}
}