September 30, 2022 - 1 minute
Use React children props
You can render children components in a parent in different ways in React. One of them is a special prop called props.children. Check what's the difference between it and passing components with custom props.
Learn moreApril 5, 2025 - 3 minutes
State in React - how to deal with it?
One of the most critical aspects of designing an app in React (and generally) is choosing a proper option for managing state. Should we use useState, useContext, Redux or maybe something else? Let's dive deeper into the topic and learn the differences.
Learn moreApril 22, 2025 - 2 minutes
React’s Render Phase and the Reconciler
How does React turn your component code into a fast, interactive user interface?” Behind the scenes, React separates rendering (the pure computation of your UI) from reconciliation (the diffing and update engine). In this post, we’ll explore how each step works, why they’re split, and how React’s Fiber architecture keeps your app snappy—even under heavy load.
Learn more