Skip to content

A package that provides a managed React table for both static and dynamic data

License

Notifications You must be signed in to change notification settings

ninetynine/react-table

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation



🗃
react-table





npm version npm license npm total downloads




npm i @ninetynine/react-table







Basic Usage

Table

Use Table when data is not retrieved from an API endpoint. It's simple to get started:

import React from 'react'
import { Table } from '@ninetynine/react-table'

const UsersTable = props => (
  <Table
    {...props}
    rows={[
      {
        id: 1,
        name: 'Leanne Graham'
      },
      {
        id: 2,
        name: 'Ervin Howell'
      }
    ]}
  />
)

export default UsersTable

Read more about customizing Table's functionality here.

AjaxTable

Use AjaxTable when data is being retrieved from an API endpoint. It is built on top of Table with a new minor tweaks:

import React from 'react'
import { AjaxTable } from '@ninetynine/react-table'

const UsersTable = props => (
  <AjaxTable
    {...props}
    url='https://jsonplaceholder.typicode.com/users'
  />
)

export default UsersTable

Read more about customizing AjaxTable's functionality here.

About

A package that provides a managed React table for both static and dynamic data

Resources

License

Stars

Watchers

Forks

Packages

No packages published