Currently under development. inspired by [react-window](https://github.com/bvaughn/react-window)
npm install react-window-tableCurrently under development. inspired by react-window
documentation (in progress)
``jsx
import { WindowTable } from 'react-window-table';
const Cell = ({ rowIndex, columnIndex, className, style }) => (
const Sample = () => (
rowCount={100}
rowHeight={40}
columnCount={100}
columnWidth={100}
fixedTopCount={1}
fixedRightCount={1}
fixedBottomCount={1}
fixedLeftCount={1}
>
{Cell}
);
``