mejik-table
v2.1.0
Published
Mejik Table
Downloads
7
Readme
mejik-table
Install
npm install mejik-table
Quick start
import MejikTable from "mejik-table";
const columns = [
{ key: "id", name: "ID", type: "singleLineText" },
{ key: "title", name: "Title", type: "singleLineText" },
];
const rows = [
{ id: 0, title: "Example" },
{ id: 1, title: "Demo" },
];
function App() {
return <MejikTable columns={columns} rows={rows} />;
}
Documentation
https://table.mejik.id