Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/geekshubhamrajput/react-hooks-exploration

🚀 A hands-on tutorial for learning React Hooks, covering essential .concepts like useState, useEffect, useContext, and custom hooks to enhance functional components in React
https://github.com/geekshubhamrajput/react-hooks-exploration

Last synced: 12 days ago
JSON representation

🚀 A hands-on tutorial for learning React Hooks, covering essential .concepts like useState, useEffect, useContext, and custom hooks to enhance functional components in React

Awesome Lists containing this project

README

        

# react-hooks-exploration
🚀 A hands-on tutorial for learning React Hooks, covering essential .concepts like useState, useEffect, useContext, and custom hooks to enhance functional components in React

## Contents
1. Introduction
2. useState Hook
3. useState with previous state
4. useState with object
5. useState with array
6. useEffect Hook
7. useEffect after render
8. Conditionally run effects
9. Run effects only once
10. useEffect with cleanup
11. useEffect with incorrect dependency
12. Fetching data with useEffect Part 1
13. Fetching data with useEffect Part 2
14. Fetching data with useEffect Part 3
15. useContext Hook Part 1
16. useContext Hook Part 2
17. useContext Hook Part 3
18. useReducer Hook
19. useReducer (simple state & action)
20. useReducer (complex state & action)
21. Multiple useReducers
22. useReducer with useContext
23. Fetching data with useReducer Part 1
24. Fetching data with useReducer Part 2
25. useState Vs useReducer
26. useCallback Hook
27. useMemo Hook
28. useRef Hook Part 1
29. useRef Hook Part 2
30. Custom Hooks
31. useDocumentTitle Custom Hook
32. useCounter Custom Hook
33. useInput Custom Hook