Skip to content

Commit

Permalink
phrasing
Browse files Browse the repository at this point in the history
  • Loading branch information
BernierMaxence committed Nov 29, 2024
1 parent 5437a4b commit bd0f7c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _posts/2024-11-22-tvjs-scroll-performance-enhancement.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ There are multiple chances for improvement in this implementation:
# [Virtualization](#virtualization)
To address the first shortcoming of the initial approach, we introduced virtualization. Virtualization is a technique to render only the items that are visible on the screen.

For context, the content of the list is stored in a redux store, normalized: to select a specific item from the store, all you need is its index in the array of items for the corresponding list.
For context, the content we display on each list is normalized and stored in a redux store. All the items are available in an array and can be selected by their respective index.

```javascript
const ItemComponent = ({ position }) => {
Expand Down

0 comments on commit bd0f7c4

Please sign in to comment.