0.0.10 • Published 4 years ago

sortable-react-table v0.0.10

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

Simple React Table

A Simple React Component

DEMO

Install

npm install --save sortable-react-table

Settings

import React from "react";
import ReactDom from "react-dom";
import SimpleTable from "sortable-react-table";

class App extends React.Component {
  render() {
    return (
      <SimpleTable
        data={[
          { id: 1, name: "simon" },
          { id: 2, name: "peter" }
        ]}
        title="simple table"
        sortables={[{ name: "id", position: "left" }]}
      ></SimpleTable>
    );
  }
}

ReactDom.render(<App />, document.getElementById("App"));

Sample

Sample

0.0.10

4 years ago

0.0.9

4 years ago

0.0.8

4 years ago

0.0.1

4 years ago

0.0.5

4 years ago

0.0.7

4 years ago

0.0.2

4 years ago

0.0.1-beta

4 years ago

0.1.0

4 years ago

0.0.0

8 years ago