Closed wibed closed 1 year ago
https://codesandbox.io/s/sandpack-project-forked-ndgbbu?file=/App.js
only renders one item somehow.
i expected item to wrap around any eventual itemcontent.
You need to add {...props} to the Item component for react-virtuoso to know what to do with it:
{...props}
Item
react-virtuoso
const Item = ({ children, ...props }) => { return <div {...props}>{children}</div>; };
https://codesandbox.io/s/sandpack-project-forked-ndgbbu?file=/App.js
only renders one item somehow.
i expected item to wrap around any eventual itemcontent.