Tag: React
-
Passing state throughout components in React
In a react application when you want to pass values from your child component to their parent component it is called “Lifting State Up”. This very easy concept always tend to leave me puzzled. Below is the very basic implementation of this, but the caveat is that we are not passing a value but understanding…