Migrating my site to Next.js
October 10, 2020I recently migrated my personal site and blog to Next.js. In this post I talk about why and how the process went.
I recently migrated my personal site and blog to Next.js. In this post I talk about why and how the process went.
Just a simple pattern I use for React Context that I've found useful.
React provides a great way to gracefully deal with errors using error boundaries, but they're limited to errors in render. Let's explore a way to remove that restriction and use error boundaries for all of our errors.
React Context is often used to pass values down the component tree, but some powerful APIs can be made by passing values up instead.
How to improve, rather than degrade, performance using React Context.