🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
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

latest
npmnpm
Version
1.0.1
Version published
Maintainers
2
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