JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 326
  • Score
    100M100P100Q92351F
  • License MIT

UI for React-Table-7

Package Exports

  • react-table-ui

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-table-ui) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

React-Table UI

UI for React-Table 7

NPM JavaScript Style Guide

Install

npm install react-table-ui
yarn add react-table-ui

Usage

import ReactTableUI from 'react-table-ui'
import { useMemo } from 'react'

const App = () => {
  const data = useMemo(
    () => [
      { name: 'Abc Xyx', age: 20 },
      { name: 'Def Uvw', age: 25 },
      { name: 'Ghi Rst', age: 23 },
      { name: 'Jklm Nopq', age: 30 }
    ],
    []
  )

  return <ReactTableUI data={data} />
}

License

MIT © GuptaSiddhant