@ninetynine/react-table
v1.1.1
Published
A package that provides a managed React table for both static and dynamic data
Downloads
40
Maintainers
Readme
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 UsersTableRead 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 UsersTableRead more about customizing AjaxTable's functionality here.
