Skip to content

bluewings/react-window-table

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
Apr 1, 2019
Apr 10, 2019
Aug 1, 2021
Apr 1, 2019
Aug 1, 2021
Apr 1, 2019
Apr 1, 2019
Apr 1, 2019
Apr 1, 2019
Apr 10, 2019
Apr 8, 2019
Aug 1, 2021
May 16, 2019
Apr 1, 2019
Jul 14, 2021

Repository files navigation

react-window-table

Currently under development. inspired by react-window

documentation (in progress)

import { WindowTable } from 'react-window-table';

const Cell = ({ rowIndex, columnIndex, className, style }) => (
  <div className={className} style={style}>
    {rowIndex} , {columnIndex}
  </div>
);

const Sample = () => (
  <WindowTable.Core
    height={300}
    rowCount={100}
    rowHeight={40}
    columnCount={100}
    columnWidth={100}
    fixedTopCount={1}
    fixedRightCount={1}
    fixedBottomCount={1}
    fixedLeftCount={1}
  >
    {Cell}
  </WindowTable.Core>
);

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published