React: Tips on Creating Reusable Components
Introduction
A huge selling point of React is its use of composable, reusable components. Everything is built off the idea of `V = F(d)`, or view/UI is created by some function acting on data/state. How do we create more…