#473 – September 22, 2024
How to properly type React components
Clean React with TypeScript
14 minutes by Robin Weser
Exploring common React features and patterns and how to seamlessly integrate them with TypeScript. The article explains how to properly type React components, use built-in React types, handle props and children, manage state with hooks, work with refs, and handle events.
How to measure React component usage by your devs
sponsored by Omlet
Omlet is a new tool to measure component (and prop) usage in your codebase. Identify which components to improve or deprecate. Increase code quality and consistent component adoption across your team.
SPA Lazy Loading Pitfalls
5 minutes by Brad Westfall
You should be lazy loading some of your routes. And if you are, you're probably messing up the data-fetching because it's an easy mistake to make.
Content Layer: A Deep Dive
11 minutes by Matt Kane
There's a new way to handle content in Astro. Take a deep dive into the Content Layer API, and learn how it can help you build even more kinds of sites using Astro.
Using callbacks to achieve better component decoupling
3 minutes by Dario Djuric
Decouple React components effectively by passing functions the right way, creating more testable and maintainable code.
How Infinite Queries work
7 minutes by T.K.Dodo
Infinite queries are React Query's way to make those doom-scrolling pages we all hate so much somewhat simple to implement. In many ways, they are identical to single queries.