0.0.18 • Published 3 months ago

supatable-rstack v0.0.18

Weekly downloads
-
License
-
Repository
-
Last release
3 months ago

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

0.0.17

3 months ago

0.0.18

3 months ago

0.0.5

3 months ago

0.0.4

3 months ago

0.0.3

3 months ago

0.0.2

3 months ago

0.0.1

3 months ago