Implementing infinite scrolling with React. Writing E2E tests with Playwright
As our application grows, the amount of data we receive through our REST API grows as well. We often need to split the data into parts and load them separately to avoid performance issues. A common pattern is implementing infinite scrolling that loads more content when the user scrolls down. In this article, we implement […]