🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

rowstack

Package Overview
Dependencies
Maintainers
0
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rowstack

0.0.26
latest
npm
Version published
Weekly downloads
38
-71.43%
Maintainers
0
Weekly downloads
 
Created
Source

Rowstack - React Database Component

Welcome to Rowstack! Our goal is to be the most performant, feature-rich and best looking database component for React.

Getting started

$ npm i rowstack

Usage

import React from "react";
import Table from "rowstack"

function App() {
  const columns = [
    { id: 0, name: "Name" },
    { id: 1, name: "Description" },
  ];

  const data = [
	  { id: 0, 0: "Sam Altman", 1: "CEO @ Open AI" },
	  { id: 1, 0: "Elon Musk", 2: "CEO @ Tesla" },
	  { id: 2, 0: "Jeff Bezos", 3: "Founder, Amazon" },
  ];

  return (
    <div style={{width: 960, height: 720}}>
      <Table columns={columns} data={data} />
    </div>
  )
}

Need help?

Join the Discord at https://rowstack.io/discord

FAQs

Package last updated on 30 Nov 2024

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