useRef: References in React, a better way to manage DOM elements
In a typical React dataflow, props are the only way that parent components interact with their children. To modify a child, you re-render it with …
Place for collecting all my knowledge and ideas
In a typical React dataflow, props are the only way that parent components interact with their children. To modify a child, you re-render it with …
Overview useReducer is another hook provided by React for managing the state. We generally use useReducer over useState when we have to manage complex state …
Disclaimer: I recently started my journey in React and I haven’t used class components in react. So my views are strictly for the functional components …
Some Background While creating this blog I ran into an issue where I wanted to direct my users to this blog from my website, but …