Skip to content

Commit

Permalink
Tweaked wording
Browse files Browse the repository at this point in the history
  • Loading branch information
bvaughn committed Dec 18, 2019
1 parent 1cee24b commit 31ba105
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@

> React components for efficiently rendering large lists and tabular data
> React window will display only a portion of your data and enable the user to scroll effortlessly through large datasets.
> React window solves 2 important problems that are frequently encountered in software development.
> 1) React window improves the responsiveness of your user interface by passing only a small portion of your data to the React reconciler.
> 2) React window reduces the memory footprint of your application when displaying large datasets and prevents out of memory errors.
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:
1. It reduces the amount of work (and time) required to render the initial view and to process updates.
2. It reduces the memory footprint by avoiding over-allocation of DOM nodes.

[![NPM registry](https://img.shields.io/npm/v/react-window.svg?style=for-the-badge)](https://yarnpkg.com/en/package/react-window) [![Travis](https://img.shields.io/badge/ci-travis-green.svg?style=for-the-badge)](https://travis-ci.org/bvaughn/react-window) [![NPM license](https://img.shields.io/badge/license-mit-red.svg?style=for-the-badge)](LICENSE.md)

Expand Down

0 comments on commit 31ba105

Please sign in to comment.