Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bluewings/react-window-table


https://github.com/bluewings/react-window-table

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# react-window-table

Currently under development. inspired by [react-window](https://github.com/bvaughn/react-window)

[documentation](https://bluewings.github.io/react-window-table/) (in progress)

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

const Cell = ({ rowIndex, columnIndex, className, style }) => (


{rowIndex} , {columnIndex}

);

const Sample = () => (

{Cell}

);
```