React Hooks Course - All React Hooks Explained

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 ส.ค. 2024
  • In this video I will teach you guys every single core hook from React!
    Code: github.com/machadop1407/react...
    -
    🚀 Learn ReactJS By Building 6 Projects: codedamn.com/learn/reactjs-pr...
    💻 Join our Discord: / discord
    -
    Social
    ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
    Linkedin: / machadop1407
    Instagram: / _pedro.machado_
    Github: github.com/machadop1407
    Email: pedro@pedrotech.co
    🌟 Gear / Hardware I Use and Recommend 🌟
    ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
    💻 amzn.to/42kqFuM 💻 Monitor
    🖱️amzn.to/3C0ZhHb 🖱️ Mouse
    📷 amzn.to/3OHJvbM 📷 My Camera
    🎤 amzn.to/3oxSthj 🎤 My Microphone
    ⌨️ amzn.to/3oFPpj1 ⌨️ My Microphone
    ⚡ amzn.to/3MYMnzM ⚡ LED Lights In the Background
    Tags:
    - ReactJS Tutorial
    - ReactJS and MySQL
    - NodeJS Tutorial
    - API Tutorial
    Timestamps
    00:00 | Intro
    01:41 | UseState
    15:19 | UseReducer
    27:12 | UseEffect
    38:52 | UseRef
    46:44 | UseLayoutEffect
    52:49 | UseImperativeHandle
    01:01:09 | UseContext
    01:09:29 | UseMemo
    01:18:55 | UseCallback
    #react-hooks #reactjs
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 931

  • @PedroTechnologies
    @PedroTechnologies  2 ปีที่แล้ว +190

    Hey everyone! A lot of you guys are asking what is the extension that autocompletes stuff in this video. The extension I am using is Github Copilot! I just posted a video going over my favourite VSCODE extensions: th-cam.com/video/ZPcrEOHpEnU/w-d-xo.html

    • @vaibhavdhole9117
      @vaibhavdhole9117 2 ปีที่แล้ว +2

      which extension he is using for (auto) coding?

    • @tibettenballs4962
      @tibettenballs4962 2 ปีที่แล้ว +8

      Pedro. Do you think your thingy is smaller than mine??
      Yes or no.

    • @alelokaoseumu
      @alelokaoseumu 2 ปีที่แล้ว +2

      @@vaibhavdhole9117 It's Github's AI Copilot... but it requires joining a waitlist if you want to use it.

    • @avinaba_mazumdar
      @avinaba_mazumdar 2 ปีที่แล้ว +1

      how is your copilot so fast on recommending?
      mine takes time

    • @PedroTechnologies
      @PedroTechnologies  2 ปีที่แล้ว +7

      @@tibettenballs4962 bruh wtf lmaoo

  • @depressedorange9088
    @depressedorange9088 3 ปีที่แล้ว +539

    Hey Bro just wanted to let you know I just won the project of the year and it wouldn’t have been possible without your help. Thanks a lot man. You don’t know much it has impacted me. Keep doing your thing. I’m dropping some Ms for you on my first pay slip. Cheers

    • @PedroTechnologies
      @PedroTechnologies  3 ปีที่แล้ว +78

      Hey, this is amazing! Im so happy to hear this, you have no idea! Thank you for watching my videos, im really happy to know you were impacted by them :)

    • @vaibhavdhole9117
      @vaibhavdhole9117 2 ปีที่แล้ว +1

      which extension he is using for (auto) coding?

    • @emmanueleban1096
      @emmanueleban1096 2 ปีที่แล้ว +3

      @@vaibhavdhole9117 copilot i guess

    • @bikramjeetsarmah9995
      @bikramjeetsarmah9995 2 ปีที่แล้ว +3

      @DepressedOrange what project did u make bro? Hit me up please 🥺

    • @deveshanandsrivastava6218
      @deveshanandsrivastava6218 2 ปีที่แล้ว

      @@vaibhavdhole9117 emmet probably

  • @emamarcela354
    @emamarcela354 2 ปีที่แล้ว +38

    I think I'm finally understanding hooks and how they work. You explain really well. Thank you so much, Pedro!

  • @chickaberga2
    @chickaberga2 3 ปีที่แล้ว +178

    Been learning React for about a month and I can safely say this tutorial was the most helpful out of any other React video I've watched

    • @PedroTechnologies
      @PedroTechnologies  3 ปีที่แล้ว +22

      Wow this makes me very happy! It took me a while to make this video so I am really happy to hear this!

    • @vaibhavdhole9117
      @vaibhavdhole9117 2 ปีที่แล้ว

      which extension he is using for (auto) coding?

  • @davidnetk
    @davidnetk 2 ปีที่แล้ว +68

    This was exactly the overview of React Hooks I was hoping to find. Thank you, Pedro, you're an excellent teacher.

  • @kramyshan8121
    @kramyshan8121 ปีที่แล้ว +3

    I have to say something, your tutorial is way better than the documentation itself. You show the details and why everything goes on. To me this channel is definitely the go to place for programmers. Thank you very much and keep it up just like this, bro!

  • @andresguerra8580
    @andresguerra8580 ปีที่แล้ว +37

    I found this tutorial very useful, however there were a few things worth mentioning that were left out in the video.
    1) useEffect hook is used for handling things outside the scope of React, like manually manipulating the DOM , make an API call, access to localStorage, etc.
    2) useEffect hook is also used to keep different states in sync.
    3) importance of the cleanUp funciton when using useEffect hook, to avoid memory leak on components that are not unmounted by React.
    4) Main problem that useContext solve is to avoid prop drilling, in other words avoid passing props from a parent component to deeply nested components when components in between won't even use these props, if the idea is just to reuse a piece of component we can use custom hooks instead

    • @sasuke_dom
      @sasuke_dom 6 หลายเดือนก่อน

      Thanks a lot for this addition too!!

  • @jeffrey5718
    @jeffrey5718 2 ปีที่แล้ว +2

    Pedro man, you are the legend mate. Never did I watch one tutorial that explains everything about React Hooks plainly. I am able to grasp all the hooks all in once. Well done!

  • @mabinogi1996
    @mabinogi1996 ปีที่แล้ว +10

    I recently started as a full time software engineer out of college, and I have been interested in exploring some of my team’s front end stuff (which is using React). I went through several Udemy courses and TH-cam videos, but always found myself getting very confused by their explanations. This video was by far the most helpful, and I have now gone from React looking like gibberish magic to having a decent understanding of how it all works! Thanks Pedro!

  • @scchengaiah4904
    @scchengaiah4904 2 ปีที่แล้ว +18

    Thank you for explaining the concepts in a simplistic manner. The way the content was structured is excellent and easily understandable for beginners.

  • @karnencaldo
    @karnencaldo 3 ปีที่แล้ว +16

    I love the way you explain things, and this is what bring me back to your channel every time I need my React skills updated. I went from 0 programming skills to building my own app exactly the way I wanted thanks to your CRUD tutorial series and I want to say that I am very thankful and will donate to you when I can. You are awesome and don't stop making videos, they are very much needed for people like me. Thank you.

    • @PedroTechnologies
      @PedroTechnologies  3 ปีที่แล้ว +4

      I appreciate that! Thank you for supporting the channel!

  • @codingispower1816
    @codingispower1816 8 หลายเดือนก่อน

    Pedro, I have a react interview on Monday and I am using your vids to refresh. Thanks for all your content! It's helping me be ready for any curveballs they have for me

  • @ngouendgerard4114
    @ngouendgerard4114 ปีที่แล้ว +1

    This is one of the most relevant tutorial I find out on React, the muscle of your head détend at your explanations, really, as react is almost confusing at times,you are really a great teacher Bro, you literally pops my esteem. YOUR tutorial is really like a part of a course bought on udemy, or somewhere else. You definitely are doing a great Job.Thank you for your consistency Pedro, it's means a lot for us, just keep going man...

  • @coltanium13
    @coltanium13 3 ปีที่แล้ว +5

    Fantastic explanations of all the hooks. one of the best react hook video tutorials ive watched. I appreciate how you put bookmarks in your video for easy navigation too.

    • @PedroTechnologies
      @PedroTechnologies  3 ปีที่แล้ว +1

      Thank you so much! This took me a while to record + edit so I am very happy to hear you liked it!

  • @learnwithjoe8117
    @learnwithjoe8117 2 ปีที่แล้ว +2

    Thank you so much Pedro!! This is such a clear explanation and this made me solve a lot of the issues I was having with my project! Well done and all the best

  • @noobdev4181
    @noobdev4181 2 ปีที่แล้ว +2

    Great, I was looking for this. I just finished my full-stack course and I need to reinforce my knowledge. Thank you.

  • @mrugamajmudar5433
    @mrugamajmudar5433 2 ปีที่แล้ว +6

    This is exactly I wanted. Fantastic video, really appreciate your efforts, superb explanation of each hook with real-time examples. Cant thank you enough!!

  • @zomerusama
    @zomerusama 3 ปีที่แล้ว +11

    You're such a great teacher. I've learn more in your 1 and a half hour video course than a 15 hour course in Udemy.

  • @chiawen.
    @chiawen. 2 ปีที่แล้ว

    This is the clearest explanation about hooks that I have ever seen! It helps me a lot! Thank you soooo much!

  • @yamilmsilva
    @yamilmsilva 11 หลายเดือนก่อน

    here from NYC, I just finished watching your tutorial , THANK YOU SO MUCH !!!! i won’t lie to you the last 2 hooks were like so complex (not difficult) , however i rewatched them 3 times and i got them PERFECTLY.

  • @emmanuelessien8739
    @emmanuelessien8739 2 ปีที่แล้ว +5

    Thanks man. These are ultimately the most important things when learning react, you've done great. Thanks again

  • @eb8931
    @eb8931 11 หลายเดือนก่อน +1

    Pedro, this is an excellent video. I think almost all concepts in computer science are very easy once you understand them. But getting to the point of understanding them can be incredibly difficult. Your explanations and use of examples really simplified the understanding concepts part. I’ll check out your other videos, but really five stars on this one.

  • @codingtroops9057
    @codingtroops9057 ปีที่แล้ว

    I want to thank you pedro. I was always worried about the hooks word when ever used in react because on every different forum their are no complete explaination of all hooks in react.
    I have gone through all the hooks you have explained and implemented my own version because of your help.
    Thank you so much and God Bless you.♥

  • @rajkgoel77
    @rajkgoel77 2 ปีที่แล้ว +5

    Wonderful explanation of all hooks along with good examples. Thank you, Pedro!

    • @vaibhavdhole9117
      @vaibhavdhole9117 2 ปีที่แล้ว

      which extension he is using for (auto) coding?

  • @achuntps0913
    @achuntps0913 2 ปีที่แล้ว +3

    Thank you for making this understandable video!! ✨ You're an excellent teacher!

  • @fredianriko5648
    @fredianriko5648 2 ปีที่แล้ว +1

    this really helps a lot for a dummy like me who is really confused when reading the official documentation of ReactJS, been trying to understanding the hook concept from reading the documentation, but still confused about how to use it practically.

  • @aries3690
    @aries3690 ปีที่แล้ว

    Thank you so much for explaining so simply using such easy examples! I wasn't understanding why we would ever use the useReducer hook, but you made it so easy with the switch case!

  • @nawodmadhuvantha9291
    @nawodmadhuvantha9291 2 ปีที่แล้ว +8

    Thank you so much. This is a most understandable tutorial about react hooks. I have a simple request. Would you mind, mention the vs code plugin that you used for getting suggestions?

  • @varaprasad4163
    @varaprasad4163 3 ปีที่แล้ว +3

    Such great content Pedro! Thanks a lot. please make a video on all life-cycle methods. it really helps a lot.

    • @PedroTechnologies
      @PedroTechnologies  3 ปีที่แล้ว

      I kinda go over the useEffect and useLayoutEffect hooks in this video. But I didn't go in full depth and talked about stuff like cleanup functions and so. I can make a video on it :)

  • @krishnakireetimamidi3838
    @krishnakireetimamidi3838 2 ปีที่แล้ว

    Great explanation and on point with the topic. I really liked how you covered use cases of every single hook instead of just explaining about the hook. Keep it going !!

  • @nstha8848
    @nstha8848 2 ปีที่แล้ว

    Wow that was some goddamn good explanation! I hope other react learners find this awesome channel soon and learn from you and best wishes to you that you reach 100k subscribers sooner and then a million subscriber anytime sooner! Lots of respect for your guidance man, loved it!! Thanks once again!!! I will comeback here once again after I crack the job as react developer !

  • @amergaber3996
    @amergaber3996 2 ปีที่แล้ว +3

    Hey Perdro, this exaplantion should be in the docmentation of React Js. You are such a great tutor. I really loved the way you explain things, very soomth and clear. Keep going bro!

  • @_Yolandi
    @_Yolandi 2 ปีที่แล้ว +6

    damn, this goes right into my playlist

  • @adarshanayak8392
    @adarshanayak8392 2 ปีที่แล้ว

    This was one of the best videos on react hooks, really informational, to the point, video I have seen on TH-cam. 👍

  • @mearn_ctaftsman
    @mearn_ctaftsman 2 ปีที่แล้ว

    Just started and not missed a single clip till the end even I know some of the stuff.
    Excellent brother.

  • @nuwanthuduwage6869
    @nuwanthuduwage6869 2 ปีที่แล้ว +3

    Great work!!!, Thank you for explanation. Keep it up. 👏👏👏✔

  • @adnantariq3346
    @adnantariq3346 ปีที่แล้ว +3

    What a brilliant young man you are Pedro! Thank you for helping thousands of us.

  • @goodvibes-io8pk
    @goodvibes-io8pk 2 ปีที่แล้ว +1

    Hey Pedro
    That's an awesome video which I have find on react hooks. It's a gem, very well explained. Was scratching my head while going through official react documents, but this helped a lot.🙂 Thanks man.....

  • @verygood5377
    @verygood5377 2 ปีที่แล้ว +1

    Thanks so much for this all-in-one video !! I can tell how much time you had to spend making it. Thank you !!

  • @kurtguardia
    @kurtguardia 2 ปีที่แล้ว +5

    Great explanation, great refresher, just what I needed. Thanks man

  • @Ram-sc6or
    @Ram-sc6or ปีที่แล้ว +3

    Thank you so much for this video

  • @rupak4roy
    @rupak4roy 2 ปีที่แล้ว

    This is just great video, I was looking something like this for long time. Very crisp examples we use on day to day work. Thanks for this video.

  • @benniegamali3622
    @benniegamali3622 ปีที่แล้ว

    Thank you so much for this explanation. Compairing the way I'm used to doing it to how to use the useState hook made it so much easier to understand! You're the best!

  • @MaximVasilkov
    @MaximVasilkov ปีที่แล้ว +4

    ~1 hour and you know all the react hooks, perfect job!

    • @VEOdev
      @VEOdev ปีที่แล้ว

      I watched a 10min videos and know all the react hook, to be honest it is not something to learn in 1.5h that's a long time for such simple thing, best way to learn just watch fast 10min video and start practice with it going back to documentationn

  • @losbopfos5637
    @losbopfos5637 3 ปีที่แล้ว +7

    That was exactly what I needed.
    Maybe it would be nice if you explain more concepts of React.
    For example whats the difference between function components and class components?

    • @saikiran9185
      @saikiran9185 2 ปีที่แล้ว

      function component is used when there is no change of props
      class components is used when props data are chages over the time
      this is major difference as i knew

  • @frankfervela7897
    @frankfervela7897 2 ปีที่แล้ว

    Amazing freaking video, thank you so much. Ive been developing react apps without knowing half of this stuff. Golden video Pedro. Much appreciated

  • @westernpigeon
    @westernpigeon 2 ปีที่แล้ว

    dude i’m in the process of becoming a self taught developer and i’ve learned a shit ton from a lot of your videos and i promise, when i land a job i’m gona make a donation to the channel 🙏 the content is too good to be free! keep it up man 👏

  • @mahtabhossain362
    @mahtabhossain362 3 ปีที่แล้ว +5

    Pure Gold. Thanks for this outstanding video. Really helped clearing some concepts.

  • @VictorLafargaSetLifeSolutions
    @VictorLafargaSetLifeSolutions 3 ปีที่แล้ว +4

    Hello, Pedro very useful and well-explained video. I'd like to know what extension that you are using in vscode that auto-complete when you type. Thank you!

    • @PedroTechnologies
      @PedroTechnologies  3 ปีที่แล้ว +4

      It is Github Copilot!

    • @VictorLafargaSetLifeSolutions
      @VictorLafargaSetLifeSolutions 3 ปีที่แล้ว

      @@PedroTechnologies I'm on waiting list. Thank you

    • @bruhking6717
      @bruhking6717 3 ปีที่แล้ว

      Thanks for the same question, I would like to ask. And thanks a lot to Pedro for the reply . It's helpful.

    • @teliiz
      @teliiz 3 ปีที่แล้ว

      @@PedroTechnologies is It free???

  • @mr_wrath
    @mr_wrath 12 วันที่ผ่านมา

    yo bro, in interview they asked me about useReducer hook and i gave the same example you gave here and i explained them in the same way as you. they were impressed and said no one really explained this usereducer like me, all thanks to you.

  • @am6930
    @am6930 3 ปีที่แล้ว +16

    Hi bro .iam from India

  • @yehiatech
    @yehiatech 2 ปีที่แล้ว

    Amazing tutorial. Simple and to the point !
    Helped alot. Keep it up !

  • @succeeder3044
    @succeeder3044 2 ปีที่แล้ว

    wow, i understand everything about hooks in just one short video.
    Kudos to you 💪🏻

  • @xFlamarangx
    @xFlamarangx 2 ปีที่แล้ว

    FANTASTIC video. I was able to follow along and make my own examples as I went. Thanks for putting this together, you earned a sub from me!

  • @Sat-7
    @Sat-7 2 ปีที่แล้ว

    Your Effort will definitely be a part of so many Dev's knowledge.
    Thumb's up Pedro.
    Pretty straight forward.
    Thank you from 🇮🇳.

  • @srikarravoori124
    @srikarravoori124 2 ปีที่แล้ว +2

    Thanks for the great content!, I watched till the end and no wonder its the best video on hooks in react. And your teaching is too simple and it worth every second of the video to watch. Superb!

  • @gustavomonte6672
    @gustavomonte6672 2 ปีที่แล้ว +1

    O melhor vídeo sobre Hooks. Brigadão Pedro!

  • @aryamitrachaudhuri6564
    @aryamitrachaudhuri6564 2 ปีที่แล้ว

    Thank you very much Pedro! You literally made it very simple to understand for any beginner. 😍🎉

  • @sachinmore8938
    @sachinmore8938 ปีที่แล้ว

    Very well simplified and easily explained the difference between all types of Hooks! Thanks!

  • @onedaytimewin
    @onedaytimewin 2 ปีที่แล้ว

    Your explanations are so frickin clean and effective. Thank you!

  • @moarifur
    @moarifur ปีที่แล้ว

    This is the only video out there which can teach me react hook!!!
    I don't know how to thank you brother so a big hug and thanks to 'PedroTech'.

  • @akbar.n
    @akbar.n 2 ปีที่แล้ว

    Thanks, Brother. The video was explained very well. The important part was that now we know there are at least these types of hoods and how it works. It will be very helpful to use them in projects.

  • @unqualifiedramdonri7386
    @unqualifiedramdonri7386 2 ปีที่แล้ว +1

    never stop with your tutorials man, youre awesome!

  • @umairqamar2672
    @umairqamar2672 2 ปีที่แล้ว +1

    This is some thing nexr level, mate. More power to you !
    Please keep uploading such amazing tutorials

  • @DaveSmith-fu2ty
    @DaveSmith-fu2ty 6 หลายเดือนก่อน

    This is an excellent video. At first I was feeling hesitant about watching an hour and 38 minute video, but it flowed well and felt like 30 minutes. Great info and great examples. I am still a little lost on the useImperativeHandle portion, but I am sure that watching it again will fill in those gaps. Keep making videos and also become a professor. The students need you!

  • @nditahsamweld346
    @nditahsamweld346 2 ปีที่แล้ว

    Very profound, yet comprehensive overview of React Hook. Kudos @PedroTech 👏👏👏👏👏

  • @joelnicholas7194
    @joelnicholas7194 2 ปีที่แล้ว

    Thank you Pedro. You are a gifted teacher and engineer!

  • @jingli9232
    @jingli9232 2 ปีที่แล้ว

    thanks, I checked around a lot of videos, only your explanation about useReducer is super clear

  • @daniabuaf
    @daniabuaf 2 ปีที่แล้ว +1

    I haven't finished the video yet, but just for the useReducer hook explanation I already love it, man! Thanks a lot!!!

  • @sakshi-ok8zu
    @sakshi-ok8zu ปีที่แล้ว

    Thanks a lot for putting this much effort in making such a quality content. Thoroughly enjoyed the video and learnt a lot from it.

  • @needcode
    @needcode 2 ปีที่แล้ว

    The best 86 minutes I have spent in my life. thank you!

  • @toufonglee5073
    @toufonglee5073 2 ปีที่แล้ว

    I'm pretty decent in React. I would like to say, you make it so easy to understand!! Great job.

  • @bhushi5764
    @bhushi5764 2 ปีที่แล้ว

    Very well explained!! This Hooks explanation hooked into my brain seamlessly. Thanks man!!

  • @LesFPinter
    @LesFPinter 2 ปีที่แล้ว

    Finally! Exatamente o que precisava. I've been struggling with hooks for months, and your tutorial is simple, complete and straight to the point! Parabens!

  • @andinkangala7282
    @andinkangala7282 2 ปีที่แล้ว +1

    I have been watching react hooks videos but i can say this is the best explained and i understood it so well. Thanks for this need to start applying them

    • @Girlgirls12233
      @Girlgirls12233 2 ปีที่แล้ว

      I just finished, and yes it is!!!

  • @luisacavalcanti3665
    @luisacavalcanti3665 ปีที่แล้ว

    This is one of the best videos I have seen about hook. Congrats!

  • @developertools95
    @developertools95 4 หลายเดือนก่อน +1

    found this tutorial very useful, however there were a few things worth mentioning that were left out in the video.
    1) useEffect hook is used for handling things outside the scope of React, like manually manipulating the DOM , make an API call, access to localStorage, etc.
    2) useEffect hook is also used to keep different states in sync.
    3) importance of the cleanUp funciton when using useEffect hook, to avoid memory leak on components that are not unmounted by React.
    4) Main problem that useContext solve is to avoid prop drilling, in other words avoid passing props from a parent component to deeply nested components when components in between won't even use these props, if the idea is just to reuse a piece of component we can use custom hooks instead

  • @user-sn1rc5ye5k
    @user-sn1rc5ye5k 2 ปีที่แล้ว +1

    I hope more people will be able to see the work you are doing! Great job! Keep going bro!

  • @normanklein3155
    @normanklein3155 2 ปีที่แล้ว

    Glad to see that you received over 300K views as its well deserved for your high quality courses

  • @shahidullahmuffakir668
    @shahidullahmuffakir668 2 ปีที่แล้ว

    Your explanation is so simple and easy to understand.
    after going through Udemy course and other TH-cam videos , my doubts were not clear , because most of the teachers are using complex language or making a very sample topic complicated but yours was the opposite.
    Thanks a lot brother.
    I am gonna follow you for future...
    Keep share your knowledge with us.

  • @ibnuakil6390
    @ibnuakil6390 11 หลายเดือนก่อน

    Thank you for your tutorial, I was so confused with hooks before your tutorial, now I understand.

  • @sourav_96
    @sourav_96 2 ปีที่แล้ว

    amazing content, i needed to understand use memo and imperative handle hooks for my work .thanks a lot

  • @RodsWires
    @RodsWires 2 ปีที่แล้ว +1

    The best course that I am done to understand Hooks. Thank you!

  • @abeercodes
    @abeercodes 2 ปีที่แล้ว

    the passion you have for coding is noticeable. You really inspire me

  • @kaicooper9421
    @kaicooper9421 2 ปีที่แล้ว

    Great tut, I didn't know how to use some of them. It would be great to have had know about some of these before hand

  • @kareemmoro2935
    @kareemmoro2935 2 ปีที่แล้ว

    Thank you so much for this tutorial, Pedro!
    this was an amazing explanation

  • @akachukwuudechukwu7761
    @akachukwuudechukwu7761 2 ปีที่แล้ว

    Thank you so much on making it so easy for me too understand these React Hooks. Thanks!

  • @Tiocode
    @Tiocode ปีที่แล้ว

    Hey bro,🤚
    Thank you for taking your time to explain various hook in this video,
    You clearly stated every details I needed to understand hooks in react

  • @pablorodriguezperez992
    @pablorodriguezperez992 2 ปีที่แล้ว

    Amazing video. Really good explanations and not that long given the amount of concepts explained

  • @madebyai
    @madebyai 2 ปีที่แล้ว +1

    Beautiful! Thank you so much for this video. Just liked & subscribed (+Bell), and I didn't even finish it. Going to complete it in one seating. Much appreciated! 🙏

  • @mertkantaroglu8104
    @mertkantaroglu8104 ปีที่แล้ว

    Great job on explaining each hook Pedro. Thanks for the video. Now I have some idea about hooks.

  • @DanielOliveiraCarvallho
    @DanielOliveiraCarvallho ปีที่แล้ว +1

    Very clear, and nice. Good job!

  • @NascifAbousalhNeto
    @NascifAbousalhNeto 11 หลายเดือนก่อน

    Nicely done, Pedro, thanks for putting this together! Subscribed!

  • @mustafahaidari3871
    @mustafahaidari3871 ปีที่แล้ว

    Thank you very much for creating this video Pedro. It was a very good refresher. Much love.

  • @fayehill1225
    @fayehill1225 2 ปีที่แล้ว

    Great tutorial. REally helped me to understand better these hooks. Thanks a lot.

  • @adityakotikalapudi329
    @adityakotikalapudi329 2 ปีที่แล้ว +2

    Wow really beautifully explained the way every hook works and to use which hook in which situation. Bit of time took to understand the useContext. Thanks and you could do a series on e commerce website using react.

  • @bazochen9456
    @bazochen9456 ปีที่แล้ว

    Your great at explaining these concepts! Fantastic work 👏🏽 best video I have come across on react. Liked ✅ and subscribed ✅

  • @arcosd63
    @arcosd63 2 ปีที่แล้ว

    This is really cool, very well done, Pedro! Thank you!

  • @Pareshbpatel
    @Pareshbpatel 2 ปีที่แล้ว +2

    This video crystallises my basic understanding of React Hooks. Very easy to follow. Thank you, Pedro.
    {2021-11-04}

  • @simongonzalez41
    @simongonzalez41 2 ปีที่แล้ว

    awesome tutorial ! thanks a lot Pedro, I finally understand useMemo and useCallback, much appreciated!