React Props and State Yesterday I explored the difference between props and state: Props: is data sent to the component from the outside, from a "parent" component, as config, as parameters, to be used by the component but are immutable. State: is data that lives inside the component, as local variables, that …
Read MoreReact Basics Yesterday I went through the props concept in React. It's passing data to a component to enable dynamic websites and code reusability. It includes passing an aobject and a non-string prop, destructuring, and spreading. I also studied mapping an array to a group of components. Kubernetes I started …
Read More