mugrid
v0.0.1
Published
A high-performant MIT-licensed React DataGrid component for everyone.
Downloads
3
Readme
µGrid
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} />;
}