react-infinite
react-infinite copied to clipboard
Add option childrenRenderer
May solve issue #31 , #45
Usage example:
<InfiniteScroll ...
childrenRenderer={(children) => (<table>{children}</table>)} >
{listItems}
</InfiniteScroll>
@garetht how about this pr ?
This is exactly what I need, being able to group displayable elements. How can I help to push this forward @garetht ?
+1 on merging this PR. I have forked and tested locally and it works as expected
+1
+1
edit: n/m i get it, the entire thing is wrapped in a table so you can render whatever you like...