Topic

#reactjs

Explore 5 articles about reactjs covering tutorials, best practices, and real-world implementation patterns for modern software development.

5 articles

3 min read

When to (Not) Use React Context API for State?

React's Context API is a popular choice for global state (my definition: state that is shared amongst components). It is easy to use and we are used to it because a lot of libraries leverage them. There are characteristics of React Context that you s...

8 min read

Creating Reusable React Components with TypeScript

Often we write React components that get bigger and bigger and at some point, we extract parts of it into separate components. Either because the component is getting too big or because we need parts of it somewhere else. This is generally a good app...

6 min read

React Pre-rendering and Potential Hydration Issue

Why I did my research I am not writing this article because the subject just came to me. It all started with an issue I had. While developing an eCommerce website for my little brother using Next.js this popped up in Google Chrome dev console: Warnin...