Posts
Accessing Children
March 11, 2024•3,377 words
Oftentimes, when passing children to a component, you want a way to programmatically access that passed data. Let's learn how to do that in React, Angular, and Vue.
Shared Component Logic
March 11, 2024•3,977 words
Components provide a great way to share layout, styling, and logic between multiple parts of your app. But what about times you only need to share logic in React, Angular, and Vue?
Dependency Injection
March 11, 2024•13,668 words
Passing around props suck. They're repetitive, get out of sync, and are easy to forget to pass. What if there was a better way to pass data between different parts of your app?
Component Reference
March 11, 2024•4,860 words
While you usually want to pass data to child components, sometimes you need to access arbitrary data from the child without needing to explicitly pass the data.