Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bluewings/react-window-grid
https://github.com/bluewings/react-window-grid
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bluewings/react-window-grid
- Owner: bluewings
- Created: 2019-04-17T05:04:44.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-04-30T22:15:19.000Z (over 1 year ago)
- Last Synced: 2024-10-30T02:28:30.384Z (about 2 months ago)
- Language: TypeScript
- Size: 1.15 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
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}
);
```