React Hooks - Complete Interview Guide
What is a Hook?
A hook is a special function that starts with "use" (like useState, useEffect) that lets you "hook into" React features.
Before Hooks:
Want to store data? → Must use class components
Function components were "dumb" - couldn't rememb...
marufrayhan.hashnode.dev7 min read