Scalable Frontend #4 – Custom Hooks to the Rescue
This post is part of the Scalable Frontend series. You can see the other parts here: “#1 — Architecture”, “#2 — Common Patterns”, and “#3 — The State…
Tag
This post is part of the Scalable Frontend series. You can see the other parts here: “#1 — Architecture”, “#2 — Common Patterns”, and “#3 — The State…
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…
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…
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,…
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…
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…