Skip to content

reactabular/reactabular-material-ui

Repository files navigation

build status bitHound Score codecov

reactabular-material-ui - Reactabular wrapper for material-ui

TODO

Example

/*
import * as Table from 'reactabular-table';
import components from 'reactabular-material-ui';
*/

const rows = [
  {
    id: 100,
    name: 'John'
  },
  {
    id: 101,
    name: 'Jack'
  }
];

const columns = [
  {
    property: 'name',
    header: {
      label: 'Name'
    }
  }
];

<Table.Provider
  columns={columns}
  components={components}
>
  <Table.Header />

  <Table.Body rows={rows} rowKey="id" />
</Table.Provider>

License

MIT. See LICENSE for details.

About

Reactabular wrapper for material-ui

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published