DEV Community

Discussion on: How to write performant React code: rules, patterns, do's and don'ts

Collapse
 
dongnhan profile image
dongnhan

Hey @adevnadia, I would like to suggest this article: kentcdodds.com/blog/fix-the-slow-r...

Not every re-render is bad that we need to reduce it as much as possible since React do check for us before committing the changes to DOM. However, slow re-render is a big indicator for bad performance.

Collapse
 
adevnadia profile image
Nadia Makarevich

Thank you for recommendation, I know this article 🙂