A very hand overview of the core concepts in React, from JSX to fragments to hooks. Includes quick reference to the core hooks and how/when to use them e.g. useState
, useContext
, useMemo
etc.
- Source
- Link to Original 🔗
- Published
- Categories
- JavaScript
- Tags
- React, cheat sheet, guide, React hook, useContext, state management, JSX, fragments
Explore Other Notes
⬅ Newer
The ransomware superhero of Normal, Illinois
The story of Michael Gillespie, a brilliant (yet modest) programmer who has become one of the world's leading ransomware crackers. He works for free, sometimes alone and sometimes with others in the …
Older ➡
Var, let, and const, what's the difference
var is globally scoped and hoisted, which can lead to unintended side effects. let is block-scoped and can never be redeclared within that scope – much harder to break, but need to be careful about …
- <!DOCTYPE html> <html> <head> <title></title> </head> <body> <p>A very hand overview of the core concepts in React, from JSX to fragments to hooks. Includes quick reference to the core hooks and how/when to use them e.g. useState, useContext, useMemo …</p> </body> </html>
- Murray Champernowne