import * as React from 'react'; import * as InfiniteScroll from 'react-infinite-scroll-component'; const options: JSX.Element[] = [
1
,
2
]; const props: InfiniteScroll.InfiniteScrollProps = { dataLength: 4, hasMore: true, endMessage: 'The end.', loader:

Loading...

, next: () => null, className: 'this-is-a-test', }; {options};