Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@nest-ui/table

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nest-ui/table

NEST Table

  • 1.0.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
22
increased by37.5%
Maintainers
2
Weekly downloads
 
Created
Source

Nest Table

React UI library for marketplace created by Nest design team.

Installation

$ npm i @nest-ui/table @emotion/react@^11.10.4

Basic usage

import { Table } from '@nest-ui/table';

const Greetings = () => {
  const data = [
    {
      name: 'Batu Mulia & Batu Alam',
      currency: '750000',
      number: '50',
      percent: '50',
      date: 'yesterday',
      time: 'yesterday',
      notfixed: 'Not Fixed',
    },
    {
      name: 'Batu Mulia & Batu Alam',
      currency: '750000 ',
      number: '50',
      percent: '50',
      date: 'yesterday',
      time: 'yesterday',
      notfixed: 'Not Fixed',
    },
    {
      name: 'Batu Mulia & Batu Alam',
      currency: '750000 ',
      number: '50',
      percent: '50',
      date: 'yesterday',
      time: 'yesterday',
      notfixed: 'Not Fixed',
    },
    {
      name: 'Batu Mulia & Batu Alam',
      currency: '750000 ',
      number: '50',
      percent: '50',
      date: 'yesterday',
      time: 'yesterday',
      notfixed: 'Not Fixed',
    },
  ];

  return (
    <Table
      fixedHeader={true}
      columns={[
        {
          title: <Checkbox />,
          key: 'check',
          render: () => <Checkbox />,
        },
        {
          title: 'STATUS',
          key: 'status',
          render: () => <span>Active</span>,
        },
        { title: 'NAME', key: 'name' },
        { title: 'CURRENCY', key: 'currency' },
        { title: 'NUMBER', key: 'number' },
        { title: 'PERCENT', key: 'percent' },
        { title: 'DATE', key: 'date' },
        { title: 'TIME', key: 'time' },
      ]}
      data={data}
    ></Table>
  );
};

Showcase

Comming soon...

Future ideas

TBH...

FAQs

Package last updated on 05 Sep 2023

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc