Closed pozdena closed 2 years ago
Items not loading on scroll in React, but working in Svelte.
Infinite scroll is working in this Svelte example: https://svelte.dev/repl/8c271c4a5c6848eabffd5efe1cc6cfde?version=3.44.2
Essentially the same app does not work in React: https://codesandbox.io/s/react-repl-forked-foc10i?file=/src/index.js
Can you help me figure out why this isn't working in React? Am I overlooking something? Thank you.
@pozdena
Since .container is a scroll container, you need to set height: 600px to .container
.container
https://codesandbox.io/s/react-repl-forked-qhnkcg?file=/src/index.js
@daybrush Thank you!!
Description
Items not loading on scroll in React, but working in Svelte.
Steps to check or reproduce
Infinite scroll is working in this Svelte example: https://svelte.dev/repl/8c271c4a5c6848eabffd5efe1cc6cfde?version=3.44.2
Essentially the same app does not work in React: https://codesandbox.io/s/react-repl-forked-foc10i?file=/src/index.js
Can you help me figure out why this isn't working in React? Am I overlooking something? Thank you.