1.1.1 • Published 4 years ago

@ninetynine/react-table v1.1.1

Weekly downloads
1
License
LGPL-3.0-only
Repository
github
Last release
4 years ago

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.