This component provides a simple way to improve render performance of long lists in React. It's a simple alternative to solutions like react-window that still works well with animation libraries like react-spring or framer-motion.
Example usage:
const List = ({ items }) => (
<div>
{items.map((item, index) => (
<WindowedRow height={64} index={index}>
<Content item={item} />
</WindowedRow>
))}
</div>
);