The customizable, extendable, lightweight, and fully free React Table Component
npm install ka-tableThe customizable, extendable, lightweight, and fully free React Table Component



npm
``sh`
npm install ka-table
yarn
`sh`
yarn add ka-table
`js
import 'ka-table/style.css';
import React from 'react';
import { Table } from 'ka-table';
import { DataType, EditingMode, SortingMode } from 'ka-table/enums';
const dataArray = Array(10)
.fill(undefined)
.map((_, index) => ({
column1: column:1 row:${index},column:2 row:${index}
column2: ,column:3 row:${index}
column3: ,column:4 row:${index}
column4: ,
id: index,
}));
const OverviewDemo = () => {
return (
export default OverviewDemo;
``