Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moguelor/yt-react-hooks
Course created by me talking about "React Hooks" on youtube.
https://github.com/moguelor/yt-react-hooks
moguelodev react react-hooks styled-components youtube
Last synced: 27 days ago
JSON representation
Course created by me talking about "React Hooks" on youtube.
- Host: GitHub
- URL: https://github.com/moguelor/yt-react-hooks
- Owner: moguelor
- Created: 2020-06-04T02:30:23.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T22:50:27.000Z (almost 2 years ago)
- Last Synced: 2024-10-03T05:07:27.826Z (about 1 month ago)
- Topics: moguelodev, react, react-hooks, styled-components, youtube
- Language: JavaScript
- Homepage: https://moguelor.github.io/yt-react-hooks/#/
- Size: 2.36 MB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# yt-react-hooks
[YOUTUBE] Course "React Hooks" created for my channel [mogueloDev](https://www.youtube.com/channel/UC7We0v9R6p88V7op23oCnWw) on youtube.# Init
1. Install dependencies with yarn or npm.
```
yarn install
```2. Start application.
```
yarn start
```# List React Hooks
=======1. [¿Por qué existen?](https://www.youtube.com/watch?v=YPfkcpakS0E)
2. [Reglas](https://www.youtube.com/watch?v=r0ogGbq5qbA)
3. [Hook useState()](https://www.youtube.com/watch?v=h1DM2kY2mkA) - [Demo](https://moguelor.github.io/yt-react-hooks/#/useState)
4. [Hook useEffect()](https://www.youtube.com/watch?v=rsDCvmgGvXE) - [Demo](https://moguelor.github.io/yt-react-hooks/#/useEffect)
5. [Hook useContext()](https://www.youtube.com/watch?v=DzsIFjfyjSc) - [Demo](https://moguelor.github.io/yt-react-hooks/#/useContext)
6. [Hook useReducer()](https://youtu.be/XwfM9GLBr3I) - [Demo](https://moguelor.github.io/yt-react-hooks/#/useReducer)
7. [Hooks useMemo() and useCallback()](https://youtu.be/DEZ_xBWciB8) - [Demo](https://moguelor.github.io/yt-react-hooks/#/memoization)