Socket
Socket
Sign inDemoInstall

react-object-table

Package Overview
Dependencies
11
Maintainers
8
Versions
68
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-object-table

React powered table of objects, designed to be editable and fast.


Version published
Weekly downloads
14
decreased by-72.55%
Maintainers
8
Install size
671 kB
Created
Weekly downloads
 

Readme

Source

react-object-table

npm version Downloads

React powered table of objects, designed to be editable and fast.

Live Demo

Check out the live demo here: http://uptick.github.io/react-object-table/

Installation

Install the package with npm:

npm install react-object-table

Then require and use with ES6 imports:

import React from 'react'
import ReactDom from 'react-dom'

import ObjectTable from 'react-object-table'

var mount = document.querySelectorAll('div.table-mount');
ReactDom.render(
  <ObjectTable
    columns={[
      {
        name: 'Message',
        key: 'message',
      }
    ]}
    objects={[
      {
        id: 1,
        message: 'Hello world',
      }
    ]}
  />,
  mount[0]
);

Optionally, include the built css with an import:

@import 'node_modules/react-object-table/dist/react-object-table.css';

or tag:

<link href="static/node_modules/react-object-table/dist/react-object-table.css" rel="stylesheet">

Full reference documentation coming soon. For now, take a look at the reference on the live demo at http://uptick.github.io/react-object-table/.

Keywords

FAQs

Last updated on 17 Aug 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc