import React from 'react'; import { render } from 'react-dom'; import InfiniteScroll from '../index'; const style = { height: 30, border: '1px solid green', margin: 6, padding: 8, }; export default class App extends React.Component { state = { items: Array.from({ length: 20 }), hasMore: true, }; fetchMoreData = () => { if (this.state.items.length >= 500) { this.setState({ hasMore: false }); return; } // a fake async api call like which sends // 20 more records in .5 secs setTimeout(() => { this.setState({ items: this.state.items.concat(Array.from({ length: 20 })), }); }, 500); }; render() { return (

demo: Infinite Scroll with fixed height


Loading...} height={400} endMessage={

Yay! You have seen it all

} > {this.state.items.map((_, index) => (
div - #{index}
))}
); } } render(, document.getElementById('root'));