#react

React Abstractions: Part 1

Render Props, Component Injection, Higher-Order Components, and More! This set of articles is an attempt to organize my thoughts on these constructs and hopefully help others along their journey through the wonderful world of React. Part 1 will be concerned with the "What&q…

React CSS Modules Evaluation

tl;dr: Use "css-loader" over "react-css-modules"/"babel-plugin-react-css-modules" because the latter relies on side-effects, adds cognitive overhead (too much magic), causes React errors in your tests, requires complex webpack config, requires an add…