rowstack
TypeScript icon, indicating that this package has built-in type declarations

0.0.26 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i rowstack

Weekly Downloads

38

Version

0.0.26

License

none

Unpacked Size

186 kB

Total Files

5

Last publish

Collaborators

  • archit-p