1.0.5 • Published 1 year ago

react-interactive-datatable v1.0.5

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

React-interactive-datatable react-interactive-datatable is a React component that renders an interactive datatable. The data is automatically paginated and sortable by columns as well as by search input.

Installation

You can install the package using npm:

npm i react-interactive-datatable

Usage

import { DataTable } from "react-interactive-datatable"

const data = [{firstName: "Bob", lastName: "Builder"}, {firstName: "Oliver", lastName: "Twist"}]

const columns = [{ title: "First Name", data: "firstName" }, { title: "Last Name", data: "lastName" }]

function App() {
  return (
      <DataTable data={data} columns={columns}/>
  );
}

export default App;
1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago