22Aug

Building React Components Using Children Props and Context API

React provides a number of powerful patterns to compose components; for example, Containment, Specialization, and Render Props. Today we’ll dive into the Containment pattern which, on the surface, looks like an easy-to-understand interface — but the example provided in React docs doesn’t have an explicit explanation of how to pass data from the parent container to its children.

31Jul

React Hooks + RxJS or How React Is Meant to Be

In this article, we will explore how the RxJS and React combo allows for better readability and less boilerplate. Additionally, we will examine how they allow the the same functionality as the popular state management frameworks even though they aren’t frameworks themselves.