#react
Don't Blindly Use useTransition Everywhere
15 min readLet's take a closer look at useTransition and why the React Docs example might not be a great starting point for real-world UX.
UI Flickering With Apollo Client: Previous Data to the Rescue!
3 min readHave you ever noticed that using Apollo Client could lead to some UI flickers within your app? Especially when you refetch. Let's see how using previousData could help solve this bad UX.
Wrapping Gatsby's <Link> with TypeScript
4 min readHow to properly wrap Gatsby's <Link> component while preserving GatsbyLinkProps type.
React Native at Classcraft
7 min readWe had to carefully find a way to introduce React Native bit-by-bit into the existing native application.
Arrow Functions in Class Properties Might Not Be As Great As We Think
8 min readSince the last year, the Class Properties Proposal simplify our life, especially in React with the internal state, or even with statics ones like propTypes and defaultProps. But, should we really use arrow functions in class field properties?