React’s UseRef Deep Dive

useRef is well known for get access to DOM elements. However, it can also be used as a way to keep a mutable value around within a component. Similar to useState that doesn’t trigger a re-render. Read more for a deep dive on useRef. Read more

Similar

React Component Lifecycle

This is third and final part of my introduction to React without using any code. With this being the third part, I will assume you have some understanding of React. If you don’t, go check out part 1… (more…)

Read more »