A react component to render large lists. Inspired by [react-virtualized](https://github.com/bvaughn/react-virtualized), but much simpler.
npm install @clinyong/react-scroll-listA react component to render large lists. Inspired by react-virtualized, but much simpler.
```
$ npm install @clinyong/react-scroll-list --save
`jsx
import { ScrollList } from "@clinyong/react-scroll-list";
class LargeList extends React.Component {
constructor() {
this.state = {
list: [1, 2, 3]
};
}
rowRenderer = ({ index, style }) => {
const item = this.state.list[index];
return (
render() {
return (