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-grid


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

Last synced: 7 days ago
JSON representation

Awesome Lists containing this project

README

        

# react-window-grid

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

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

```jsx
import { WindowGrid } from 'react-window-grid';

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


{rowIndex} , {columnIndex}

);

const Sample = () => (

{Cell}

);
```