All Posts
Using React children prop with TypeScript
· ☕ 2 min read · ✍️ Iskander Samatov
I'll cover each of the types used for children prop and discuss the trade-offs so you can pick the right one for your use case.

Top five useful Chrome Dev Tools tips for React
· ☕ 5 min read · ✍️ Iskander Samatov
There are many tips for Chrome Dev Tools, but not all of them are useful for React. Here I cover five Dev Tools tips tailored for React development.

You are refactoring code all wrong
· ☕ 7 min read · ✍️ Iskander Samatov
People often refactor without a strategy and for the wrong reasons. You need to know why you're doing it and have a clear end goal.

Easy undo feature with React and Immer.js
· ☕ 7 min read · ✍️ Iskander Samatov
Let's explore adding the undo feature to React with Immer.js while building a dungeon crawler game.

Quickly find bad commits using git bisect
· ☕ 4 min read · ✍️ Iskander Samatov
Searching through the commit history trying to find the regression bug? You can use git bisect to find the culprit much faster.