Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bluewings/react-window-table
https://github.com/bluewings/react-window-table
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bluewings/react-window-table
- Owner: bluewings
- Created: 2019-04-01T00:59:51.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-04-30T19:14:13.000Z (over 1 year ago)
- Last Synced: 2024-10-18T02:23:48.291Z (2 months ago)
- Language: TypeScript
- Size: 4.41 MB
- Stars: 10
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
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}
);
```