0.0.1 • Published 3 months ago

mugrid v0.0.1

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

µGrid

Tests

A high-performant MIT-licensed React DataGrid component for everyone.

Features

  • 💯 Free & open-source
  • 🚀 TypeScript-first
  • 📦 Small bundle size
  • 🎨 Customizable

Installation

npm install mugrid

Usage

import { DataGrid } from 'mugrid';

const columns = [
  { key: 'id', name: 'ID' },
  { key: 'name', name: 'Name' },
  { key: 'age', name: 'Age' },
];

const rows = [
  { id: 1, name: 'John Doe', age: 25 },
  { id: 2, name: 'Jane Doe', age: 22 },
];

function App() {
  return <DataGrid columns={columns} rows={rows} />;
}
0.0.1

3 months ago