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
Install
npm install react-table-uiyarn add react-table-uiUsage
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