Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion documentation/docs/fundamentals/performant-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ const MyItem = ({ item }) => {
};
```

Since `MyHeavyComponent` does not directly depend on the `item` prop, `memo` can be used to skip re-rending `MyHeavyComponent` when the item is recycled and thus re-rendered:
Since `MyHeavyComponent` does not directly depend on the `item` prop, `memo` can be used to skip re-rendering `MyHeavyComponent` when the item is recycled and thus re-rendered:

```tsx
const MyHeavyComponent = () => {
Expand Down
Loading