React useState Functional Updates and Why They're Important
Make sure your state is never stale by using a functional update

Search for a command to run...
Series
A series of posts on the basic fundamentals of React.
Make sure your state is never stale by using a functional update

In this post, we're going to take a look at component composition in React. Composition is a style of building components. It involves passing child components as props to a parent component. The most common example is the children prop. Composition ...

In this post, we’re going to take a look at what a React render prop is and how it can help you build better components. A surefire way to make your code more maintainable is to leverage code reusability. Render props are one way to help you do that....

If you've done any kind of frontend work, you've probably come across a form. They're not difficult to implement in React. That said, there are edge cases that can lead to complex code if you're not careful. One edge case involves using a single form...

Spoiler: It doesn't...at least not directly

If you're writing React today, you're probably using JSX. If you aren't familiar with JSX, it can be challenging to work with at first. For the most part, it should resemble HTML, but there are some subtle differences. Understanding these differences...
