This was really helpful, great voice great explanation!
@yashdeephinge3 жыл бұрын
Great Video Just a comment for viewers If you are a beginner the current version of react doesn't supports this. const comp = ()=>{ 1} you need to add return const comp = ()=>{ return 1} to make it work.
@quartz28443 жыл бұрын
Thank you so much! Your videos are so helpful! :)
@tomrago8444 жыл бұрын
Amazing tutorial 💙
@stanstanstan3 жыл бұрын
Awesome introduction, thank you!
@redbeard18914 жыл бұрын
Awesome content mate. Could you do a vid on how to setup a next+react native monorepo
@e11world4 жыл бұрын
I love the way you teach and I'm so excited that I found your channel (subbed) and learning this course from you. Can't wait to go through the rest of this playlist! I've been doing the cpanel way with WP or static html sites for years and finally getting on this train but have doubts since my JS level isn't much. Would you say this is a good alternative to building blogs, ecommerce sites for someone who's learning still (I do that stuff with ease for my clients with woocoomerce for example) but just not knowing enough about how you'd have the blog post be edited, adding products, integrating shopping cart system (with db) is still putting me off. Seems like your playlist has answers to lots of my questions but wondering if I can still upload / export a next.js site to cpanel easily?
@leerob4 жыл бұрын
Try vercel.com/import. Even easier than cpanel!
@svahora4 жыл бұрын
It's amazing what you're able to do with React, but it's difficult for me to read and conceptualize the code at 15:00 - Can NextJS only be used if one understands React well?
@leerob4 жыл бұрын
Yes, Next.js is built on top of React. What about 15:00 is confusing for you? I can try and explain more 😁
@svahora4 жыл бұрын
@@leerob I can't keep track of all the "this" used. I'm a visual person and I'm struggling to understand what data is being moved around.
@leerob4 жыл бұрын
@@svahora This is one of the big reasons to go directly to hooks. "this" was really confusing. If you're just getting started, just immediately go to hooks and forget about classes :) My opinion.
@aashiqahmed52734 жыл бұрын
for me the super(props) is automatically striken down and says deprecated?
@leerob4 жыл бұрын
Explaining class components is to help provide context to those who might have worked with React in the past, but not the newer features. Going forward, I would recommend using hooks for everything.
@aashiqahmed52734 жыл бұрын
@@leerob cool
@pr7solo9194 жыл бұрын
@@leerob i think in present version of react we no longer need to use constructor and defining this.state ...we can simply write state without using constructor ....am i right?
@leerob4 жыл бұрын
@@pr7solo919 This is mostly for historical context. I'd recommend using hooks!
@pr7solo9194 жыл бұрын
@@leerob i got it ,,thanks for the respond
@unmy4004 жыл бұрын
do people still use Classes components for new components? thought it was a legacy thing now
@leerob4 жыл бұрын
Yeah, it's rarely used anymore. Helpful to understand, though!