React Window

Components for effectively rendering large lists and tabular data

Creator

Brian Vaughn @brian_d_vaughn

Description

React window works by only rendering part of a large data set (just enough to fill the viewport). This helps address some common performance bottlenecks: It reduces the amount of work (and time) required to render the initial view and to process updates, and reduces the memory footprint by avoiding over-allocation of DOM nodes.
Visit Site
Related Projects