0.2.1 • Published 7 years ago

hyo v0.2.1

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Hyo :mount_fuji:

- A light-weight datatable for React.

hyo

Getting Started

Installation

Hyo is now available from the npm package manager. Navigate to your project folder, and you can install it with the following commands

  • yarn add hyo - Using yarn.
  • npm install --save hyo - Using npm.

Then import styles by including our style.min.css

  • <link rel="stylesheet" href="node_modules/hyo/style.min.css">

Your First Table

With only two props, you can make your first Hyo table.

  import Table from 'hyo';

  const def = [
    { key: "name", label: "Name", flexGrow: 1, resizable: true },
    { key: "gender", label: "Gender", flexGrow: 1 },
  ];

  const data = [
    { name: "Mars", gender: "Male" },
    { name: "Tony", gender: "Male" },
  ];

  return <Table def={def} data={data} />;`
0.2.1

7 years ago

0.2.0

7 years ago

0.1.14

7 years ago

0.1.13

7 years ago

0.1.12

7 years ago

0.1.11

7 years ago

0.1.10

7 years ago

0.1.9

7 years ago

0.1.8

7 years ago

0.1.7

7 years ago

0.1.6

7 years ago

0.1.5

7 years ago

0.1.4

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago