Codeminer42's Engineering Blog
React

What a Flerken are React PropTypes and How to Use Them in a Fancy Way?
One of the main concepts of a React Component is its props. The props are used to pass data to a component, just like a parameter is to a function,…
Scalable Frontend #3 — The State Layer
State tree, the single source of truth This post is part of the Scalable Frontend series, you can see the other parts here: “#1 — Architecture” and “#2 — Common…
Using Mappers to Organize Your Data
At some point during the development of your project, you might have needed to develop a feature that consumed data from an external source. You had no idea, however, about…
Scalable Frontend #1 — Architecture Fundamentals
This post is part of the Scalable Frontend series, you can see the other parts here: “#2 — Common Patterns” and “#3 — The State Layer”. The two most common…
Annotations about React Higher-Order Components
One of the best parts in React development is its functional approach for building user interfaces. This approach allows us to use the Higher-Order Component (HOC) technique. It goes back…