React router crash course

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 ก.ย. 2024
  • Visit chaicode.com for all related materials, community help, source code etc.
    Sara code yaha milta h
    github.com/hit...
    Discord pe yaha paaye jaate h:
    ""/discord
    Instagram pe yaha paaye jaate h:
    / hiteshchoudharyofficial

ความคิดเห็น • 1.7K

  • @Niteshmaurya1234
    @Niteshmaurya1234 9 หลายเดือนก่อน +220

    1:02:15 GOLDEN WORDS "Function se hi functionality aati hai "
    ~ Lovely Hitesh Sir

    • @chaiaurcode
      @chaiaurcode  9 หลายเดือนก่อน +53

      Thanks😄

    • @Niteshmaurya1234
      @Niteshmaurya1234 9 หลายเดือนก่อน +18

      @@chaiaurcode your most walcome sir itne jaldi reply to paid courses me bhi nahi milta 😂

    • @Moviewalaa01
      @Moviewalaa01 3 หลายเดือนก่อน +10

      ​@@chaiaurcodesir ji ek video tailwind pr bhi

    • @lucygamingyt6792
      @lucygamingyt6792 2 หลายเดือนก่อน

      @@Moviewalaa01 already available hai ,search 'tailwind by hitesh choudhary'

    • @ZoyaKhan-mq1qo
      @ZoyaKhan-mq1qo หลายเดือนก่อน

      @@Moviewalaa01 he already made one on college wallah channel you can search by hitesh choudhary tailwindcss

  • @averagearoha9243
    @averagearoha9243 8 หลายเดือนก่อน +99

    anchor tag or tag is not used in React as it refreshes the whole page which is not the concept of react, that's why Link tag is used in react which is imported from react-router-dom

  • @VelishFashion
    @VelishFashion ปีที่แล้ว +405

    Whoever is reading this, never give up. God is with you.

    • @GolPedia
      @GolPedia ปีที่แล้ว +32

      Thanks for your comment. I have been suffering from chronic pain for the last five years i did btech but can't do my job because of health. My treatment is ongoing in aiims

    • @ShubhanshuSneh-f3p
      @ShubhanshuSneh-f3p 11 หลายเดือนก่อน +3

      to mai kya kru 😕@@GolPedia

    • @abhishekchaudhary4058
      @abhishekchaudhary4058 9 หลายเดือนก่อน +4

      ​@@GolPedia
      Bhaii you know your pain. Keep on fighting. You will surely succeed.

    • @sonumondal7798
      @sonumondal7798 6 หลายเดือนก่อน +1

      ​@@GolPediaeverything happens for a reason. I only want to tell you that never give up.

    • @KrishanKumar-lp2cd
      @KrishanKumar-lp2cd 4 หลายเดือนก่อน

      ​@Jimmy-lk5nb "It's about believing that someday you will get it right."

  • @adhiraj2461
    @adhiraj2461 8 หลายเดือนก่อน +36

    00:05 UI cloning projects are popular on TH-cam
    01:57 React Router crash course covers the basics of React Router and its usage.
    05:42 Learn how to start a React Router project
    07:52 React Router is a key topic in this video.
    12:18 React Router provides a way to navigate between different components in a single-page application.
    14:20 React Router structure and navigation bar
    17:53 Creating header, footer, and home components
    19:52 React router crash course
    23:56 Installing different components inside your home
    25:47 React Router allows for dynamic routing in web applications.
    29:21 Understanding React Router and troubleshooting rendering issues.
    31:30 React Router simplifies the process of linking and injecting data into components.
    35:30 Understanding React Router basics and common errors
    37:49 React Router allows easy navigation and routing in web applications.
    41:17 React router allows parameterizing URLs to access dynamic values.
    43:16 Capturing dynamic data using React router
    47:04 Understanding when and how to call AP in React Router
    49:01 Using data calls and passing data inside
    52:47 React Router allows for easy navigation and routing in a React application.
    54:53 React Router crash course summary
    58:21 React Router provides a way to handle navigation and routing in React applications.
    59:56 React Router provides a way to handle routing in a web application.
    1:03:30 React Router crash course

  • @farazmobin2776
    @farazmobin2776 ปีที่แล้ว +77

    I have noticed that there are many tutorials on React available on TH-cam, but I must say that your tutorials are truly exceptional, sir. The in-depth explanations that you provide are unparalleled, and I am thoroughly enjoying learning from them. Unlike other tutorials, which often involve complex projects that are difficult for beginners to understand, your React playlist is the best because it gives me the confidence to start with small projects and work my way up to bigger ones. I encourage everyone to like, share, subscribe, and comment on your content, sir. Your hard work is greatly appreciated, and the high-quality audio and video that you provide make the learning experience even more enjoyable. Thank you once again!

    • @amanjeetsinghsaluja5246
      @amanjeetsinghsaluja5246 11 หลายเดือนก่อน +2

      bhai chat gpt use karne aata hai

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

      @@amanjeetsinghsaluja5246 No! ChatGPT is not good for beginners or even intermediate users. I recommend watching this channel carefully and taking your time to relax. As you know, the teaching style is very effective, and even beginners can understand every concept well and practice with real-world examples! Thank you, Hitesh Sir, for understanding us at our level!

  • @AmaanGhazi-gb6ce
    @AmaanGhazi-gb6ce 9 หลายเดือนก่อน +26

    React provide the feature of Link instead of because reloads the entire page. React also provides NavLink with some additional features like highlighting the active nav page.

    • @keyur1859
      @keyur1859 7 หลายเดือนก่อน

      ty

  • @codiosity
    @codiosity 3 หลายเดือนก่อน +12

    Yes, that's true. In React applications, including those using React Router for navigation, the `` tag provided by React Router is preferred over the traditional `` tag for several reasons related to how React manages rendering and state.
    1. Preventing Full Page Reloads : When you use an `` tag with an `href` attribute, clicking on it typically triggers a full page reload, especially if the `href` points to a different route or location. This behavior is contrary to React's single-page application (SPA) model, where the page should not reload entirely during navigation but rather update dynamically.
    2. Client-Side Routing : React Router provides client-side routing, which means it intercepts link clicks and handles navigation without requesting new pages from the server. This results in a smoother user experience as only the necessary components are re-rendered based on the URL change.
    3. Maintaining State : When you navigate using `` from React Router, React maintains the current state of components unless explicitly instructed otherwise. This is crucial for preserving application state and context across different views or pages.
    4. Performance : Since React Router manages routing on the client side, it typically results in faster navigation between pages compared to traditional server-side navigation where a full page reload is required.
    5. Integration with React's Virtual DOM : React's virtual DOM allows it to efficiently update only the parts of the page that have changed. React Router's `` component integrates seamlessly with this paradigm, ensuring that only the necessary components are re-rendered when navigating between routes.
    In summary, using `` from React Router instead of `` tags helps adhere to React's principles of efficient rendering and state management in SPAs. It ensures that navigation is fast, smooth, and maintains the integrity of React's virtual DOM for optimal performance.

  • @PRATIK-v2l
    @PRATIK-v2l 7 หลายเดือนก่อน +14

    I know sometimes React seem confusing, even I thought that I should quit now and start backend. But guys, listen, once you have started something, you have to complete it. Never give up guys.

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

    It's not just a playlist it's an in depth about react and all others that require..... thank you for your time and consideration to the playlist ....

  • @artazakhan3290
    @artazakhan3290 6 วันที่ผ่านมา

    we don't use tag in react because it refreshes the whole page and react have the concept of injecting the different nodes in the Dom rather the repainting the whole page so we use tag in the place of which is imported through react router Dom

  • @somnathbedia
    @somnathbedia ปีที่แล้ว +41

    Sir your are giving more than paid courses . Thanks a lot Sir. Love From Ranchi, Jharkhand .

    • @chaiaurcode
      @chaiaurcode  ปีที่แล้ว +15

      Most welcome

    • @jdgjbb
      @jdgjbb 4 หลายเดือนก่อน +2

      oh! thala for a reason se h aap

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

      ​@@jdgjbb ji haan

  • @mohitbisht4437
    @mohitbisht4437 11 หลายเดือนก่อน +32

    sir its not like that "react is easy or something else", its about teaching method that how the instructor or teacher teaches the things. And thank you so much sir to make this react series easy for us and i really respect your dedication and hard work you put on this series.

    • @chaiaurcode
      @chaiaurcode  11 หลายเดือนก่อน +27

      Thanks and Keep watching ☺️👍🏻

    • @kaps-m8i
      @kaps-m8i 10 หลายเดือนก่อน +1

      @@chaiaurcode bhaiya can you explain useReducer hook

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

      Easy to mat kaho yaar ... Easy Ka matlab ye hota ..Ky first ap react learn what matters btao .. pher series... Ye channel Myra bhi favourite Hy . But I think hitish makes things more depth and complex..which is not beginner friendly.
      He teaches how things were at the beginning stage then this concept came then that concept came. ..
      That why , sheryian coding school is the best channel ...they actually know how to teach...

  • @rahoolsinghdotinc
    @rahoolsinghdotinc 11 หลายเดือนก่อน +4

    1:00:00 Tried and figured out that if we create a sub-route in About we need to add in About to show other pages, or we need to make a master component that will load About for blank path and another component for children in that master layout. Thank you so much Hitesh for such amazing content.

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

      Thanks

    • @harshshukla001
      @harshshukla001 10 หลายเดือนก่อน

      yes i have also tried but content of about is visible as i want to load a completly fresh page how to do soooo /about/fresh is not loading a new component

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

    i don' t think any other youtuber or teacher can teach you better than you without any fees . You have seriously set the bar .

  • @ishaangarg2001
    @ishaangarg2001 10 หลายเดือนก่อน +4

    There are many tutorials on React available on TH-cam, but I must say that your tutorials are truly amazing sir

    • @chaiaurcode
      @chaiaurcode  10 หลายเดือนก่อน +1

      Thank you so much 😀

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

    The only reason why I chose one API project, one design project, one with the tailwind, and the other with plain CSS is that I want to showcase that I can work with everything. I was looking for a react-router crash course for my API-based single page routing and I got it.

  • @anshdholakiya7606
    @anshdholakiya7606 2 หลายเดือนก่อน +1

    achort tag or tag is not used in React as it refreshes the whole page which is not the concept of react , that's why Link tag is used in reach which is imported from from react-router-dom

  • @saurabhbhatt-v6g
    @saurabhbhatt-v6g ปีที่แล้ว +20

    I appreciate how you break down complex concepts into simple, understandable steps, making it so much easier for beginners like me to grasp the fundamentals of React. Thank You Hitesh Sir 😀

  • @kmSaifullah
    @kmSaifullah 6 หลายเดือนก่อน +3

    Wow I love this tutorial so much😍😍 I have watched at least 4-5 tutorials on this topic, but I found your way of teaching very interesting and very very helpful. Thank you so much for sharing this with the world👏👏

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

    to my dear learners please don't give up i thought to give up while watching this video twice but i continued and i understood 50 percent i will watch the video again to learn 100 percent ,i request you not to give up instead use book note down the things and you will see the magic

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

    This React series feels like a web series to me, and I eagerly await each new video as if it were a new episode of a web series. Your Teaching is simply Outstanding ❤❤

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

    Function Router( ){
    return(
    Function Se Hi Functionality Aati Hai
    )
    }
    Thank you so Much Sir for the Explaination of ReAct-Router ☺

  • @MuhammadYasir-cl4jp
    @MuhammadYasir-cl4jp 10 หลายเดือนก่อน +3

    This react router crash course is best on youtube. Hitesh Sir made this concept so much easy. Thank You sir❤❤❤❤

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

    anchor tag or tag is not used in react as the whole page will be reloaded/refresh again ,instead we use Link tag from react-router-dom

  • @manujdixit4114
    @manujdixit4114 11 หลายเดือนก่อน +8

    i m lucky to be suggested by my friend to watch these tutorials, truly amazing content, probably saved my weeks.
    Keep creting content like this, very helpful.
    Wish u very great future.

  • @SantoshKumar-uu2lo
    @SantoshKumar-uu2lo ปีที่แล้ว +7

    Many types of Tutorials on React available on TH-cam , But Sir your Content is absolutely great in hindi and English .

  • @thecalgarians4597
    @thecalgarians4597 4 หลายเดือนก่อน +2

    Gadar machaa diya Hitesh ji itni easily React Router explain karke.
    Muje abhi tak kahin aur se itni clarity nahi mili thi.
    Aap dhanya hain.

  • @yashrajsingh4215
    @yashrajsingh4215 8 หลายเดือนก่อน +6

    anchor tag use ni karte hain react me coz usse humara page reload hota hai but hum uski jagah link tag use karte hain jisse pura page reload ni hota which it the major advantage of react

  • @khanyasir7157
    @khanyasir7157 2 หลายเดือนก่อน +2

    Interview question : why should we not use the a tag in the react ?
    Ans : if we use the a tag then it will refresh the whole page ,joki woh hame nhi chaiye , we will use the Link jo DOM mai only specific part par changes karega , which will improve the efficiency of the website.

  • @asmittyagi6250
    @asmittyagi6250 8 หลายเดือนก่อน +3

    Link => is used in place of the "" tag because when we click on the "a" tag the whole page got reload.
    That's why in react we use the "" tag.

  • @HimanshuMeena-hi9nq
    @HimanshuMeena-hi9nq หลายเดือนก่อน

    anchor tag or tag is not used in React as it refreshes the whole page which is not the concept of react, that's why Link tag is used in react which is imported from react-router-dom

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

    Sir, the way you present every topics with such an in-depth knowledge, they become very easy and simple to implement. But sir if you can show us the insights of how a web-developer actually works on a project in the company and build some features it would be very helpful. We can get to know how we should practice and approach a project more.

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

    "Function se hi functionality aati he" - By Hitesh Sir🔥

  • @RushikeshN.
    @RushikeshN. 4 หลายเดือนก่อน +2

    13:49 The tag is refresh the page that why the not using in react tag are using

    • @nusratlines4947
      @nusratlines4947 4 หลายเดือนก่อน

      Is sy to a tag hi bater tha yar

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

    I have no words to express myself about your teaching style love you sirji 🥰🥰🥰🥰🥰

  • @shashwatgoyal
    @shashwatgoyal 2 วันที่ผ่านมา

    13:45 is not used because it refreshes the entire page therefore we use Link tag in the react router dom

  • @nishant7083
    @nishant7083 ปีที่แล้ว +9

    Hello sir , I'm really really really thankful for the js series I will continue with this too
    Sir , there is one request please consider if you could .
    I am from a non cs background that is why I have seen some basic programs flow charts , pattern question , and other very basic fundamental are the problems , I saw the content on TH-cam firstly it's in English + either in Java or c++ and Thora dikkat jayada ho rha hai please please Thora kuch kijiye please . Hamare jaison bchon ka bhala ho jayega

    • @Anshi-jq7df
      @Anshi-jq7df ปีที่แล้ว +1

      Agree brother sir reply please

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

      Bro I have the same problem , 2 marathons like js series would be great

  • @niloydas6581
    @niloydas6581 4 หลายเดือนก่อน

    Notes:
    We don't use tag with React because it reloads the entire page.
    We use instead of in React.

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

    1:04:31 Thanks Sir,
    I'm glad that I discovered you channel at my initial period of learning. You're just superb. I just think that any paid course is not near you.
    Once Again Thanks Sir 🎉🎉

  • @ForAll1987
    @ForAll1987 7 หลายเดือนก่อน +1

    tag is not used because page in reload so instead we used link from react-router-dom

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

    Great initiative to work on projects, but i think we also need figure out many things ourselves as well

    • @chaiaurcode
      @chaiaurcode  ปีที่แล้ว +14

      Ye to h hi. Duniya ki koi kitaab ya lecture aapko sab kuch thodi sikha skta h lekin sikhne ki raah mil jaati h

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

      @@chaiaurcode Yes, that's right 👍

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

      ​@@chaiaurcodeYes sir

  • @someshkarmakar47
    @someshkarmakar47 7 หลายเดือนก่อน +1

    writing code is easy but writing efficient code is something different... thanks man for this great tutorial... fact is you are just calling some data from a API and still you are teaching how to load it efficiently that's a huge performance improvement for bigger applications... really appreciate it 👍

  • @himanshuhota01
    @himanshuhota01 10 หลายเดือนก่อน +2

    Thank you sir really short and precise , I have spent 20000+ rs but trust me this is better than they teach in so called branded 9 month bootcamp

  • @aloktamrakar9541
    @aloktamrakar9541 9 หลายเดือนก่อน +1

    Completed previous tutorial at 29-11-2023 and started this one love your content sir

  • @lakshyakalra419
    @lakshyakalra419 2 หลายเดือนก่อน +2

    i dont remeber when i started this tutorial, I watched the last video 2weeks ago and I regret not being consistent. anyone who's seeing this comment, please be consistent bro.

  • @Hamza-um5uz
    @Hamza-um5uz 2 วันที่ผ่านมา

    JavaScript has been really hard for me, but the way you explain all the concepts of it and the way of presentation was just outstanding. Now it is same for react.js. you truly are an outstanding teacher.

  • @mukeshutmani
    @mukeshutmani 5 หลายเดือนก่อน +2

    "Chai Chlte rhe ge muje pta ha ap bura nhii mano ge " Words are special For tea lovers
    Thank you so much sir

  • @saharanstudio8683
    @saharanstudio8683 วันที่ผ่านมา

    One of the greatest react course. I tried some paid course but i failed to build confidence in React but now I realize this is best series for learning React. Thanks Hitesh sir for such a valuable knowledge.

  • @SuryaKarigar
    @SuryaKarigar 9 หลายเดือนก่อน +1

    Funciton se hi Funcitonality aati hai. Maan gaye Giruji 🙏 Kya punchline mara hai 🎯

  • @pragyapant9324
    @pragyapant9324 9 หลายเดือนก่อน

    Link tag is used instead of tag ,because tag reloads the whole page

  • @irfanullah2910
    @irfanullah2910 8 หลายเดือนก่อน +1

    I just watched the React Router tutorial on Chia's "Our Code" TH-cam channel, and I must say it's simply superb! 🌟 The project-based approach made it a bit challenging on the first watch, but going through it a second time made everything crystal clear. The content is amazing, and I appreciate the detailed explanations that helped me grasp React Router concepts effectively. Big thumbs up to Chia for creating such valuable content! 👏👏

  • @idkwhat337
    @idkwhat337 4 หลายเดือนก่อน

    tags use nahi krte kyuki usse page reload hota hai instead hum tag use krte hai jo react-router-dom se aata hai

  • @rajuxz1
    @rajuxz1 3 หลายเดือนก่อน +1

    Remember something:
    " Agar react router seekhna hai to yahaan se easy kahin bhi nahi hai "
    - True words by our Hitesh Sir !
    Thanks a lot for course sir ji !

  • @AjoyPaul2023
    @AjoyPaul2023 9 หลายเดือนก่อน +2

    13:48
    'a' tag is not used in React. Instead of that 'Link' tag is used. Because click on the 'a' refresh the page and restructed the DOM again, but this functionality is missing in React.

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

    I'm revisiting this playlist before i dive into appwrite stuff and the concepts are much more clear now. If you are not getting the concepts in first go, try to watch the video completely and come back to it again. Love Hitesh sir's way of teaching!!

  • @SaiSreeRamChavali
    @SaiSreeRamChavali 7 หลายเดือนก่อน

    The manner in which you articulate the intricacies of the behind-the-scenes aspects makes it more captivating to listen to sir.

  • @anandMaharana04
    @anandMaharana04 15 วันที่ผ่านมา

    " 13:51 To fir react kis kam ka"
    Ye line badhia tha guru🎉

  • @san29sh
    @san29sh 10 หลายเดือนก่อน

    Hitesh aap kuch bhi explain karte Hain tab sab kuch easy lagne lagta hain, aap complex code ko bhi bahut easy way me explain kar dete hain usase bahut jaldi samjh aa jata hain

  • @vijay_explorer
    @vijay_explorer 9 หลายเดือนก่อน

    I have tried following many React course and could not do it after 20 to 30%....At last I found an instructor who I can follow without getting bored.
    Thank you so much Hitesh sir, your pedagogy (padhane ka tareeka :) ) is the best....Thank you a million times.!! Best react course ever without a doubt.

  • @abhik6400
    @abhik6400 2 หลายเดือนก่อน +2

    The anchor tag is not used in react because using anchor tag would refresh the complete web page once any changes occur in the web page which is not a functionality of react therefore link and navlinks are used for the purpose.

  • @Suraj.5260
    @Suraj.5260 8 หลายเดือนก่อน

    we mustn't use a tag in react coz tag is expected to refresh every time whereas Link/ NavLink isn't.

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

    When i watch your videos, it feels like every single minute is being utilised. I am hooked. Literally 1 hour + of pure knowledge, and so much in depth. Thank you sir. I cannot appreciate you enough, and the fact that this is free, that is absolutely mind blowing.

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

    Sab Functions hai Functions ko hook bolate hai Function se hi Functionality aati hai but Hitesh bhaii se hi concepts me clarity aati hai. Thanks Hitesh Bhaii.🙏

  • @Harsh-w1i
    @Harsh-w1i 10 หลายเดือนก่อน +1

    The best course on the internet with chai . Very grateful for your efforts sir.

  • @priyojitsingha
    @priyojitsingha 2 หลายเดือนก่อน

    14:01 we use Link tag inplace of a tag because Link tag prevents page reload unlike a tag. On page reload react will rerender the page...

  • @Bharatiya_Gane
    @Bharatiya_Gane 7 หลายเดือนก่อน +1

    Very Good Explanation of React Router. Sir ,You are Gem ❤☕☕

  • @Tylor_Rodriguez
    @Tylor_Rodriguez 5 หลายเดือนก่อน +1

    teaching method is absolutely gorgeous 🤩

  • @deepakkumar-ko9wj
    @deepakkumar-ko9wj 6 หลายเดือนก่อน

    Khas bat to Hitesh sir me hai. A man is on mission of tech education with simplicity.

  • @pallavipatil8270
    @pallavipatil8270 3 หลายเดือนก่อน

    This is the best react routing video I have ever watched on youtube!
    Thank you so much Hitesh for such an amazing crash course.

    • @bevanmehra1706
      @bevanmehra1706 3 หลายเดือนก่อน

      This code is not woking . Is this working for you?

  • @hiphop861
    @hiphop861 9 หลายเดือนก่อน +1

    There are many teacher and tutorials on TH-cam. But no one is like you. Please don't stop. I predict and pray that you channel will touch around 500K to 700K subs until the end of next years

    • @chaiaurcode
      @chaiaurcode  9 หลายเดือนก่อน +2

      Pray b zruri h n share b zruri h, vo b kr doge to jldi ho jayega kaam

    • @hiphop861
      @hiphop861 9 หลายเดือนก่อน

      @@chaiaurcode definitely sir

  • @mehrabhasantanim338
    @mehrabhasantanim338 4 หลายเดือนก่อน

    The only one Indian content creator who can actually write code with producing good content.

  • @atharvadeshmukh6328
    @atharvadeshmukh6328 9 หลายเดือนก่อน

    Your teaching is addictive!
    "Functions se hi functionalities aati hai"

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

    maja aa gaya sir ji....aap har naye project me pichle project me jo sikha hai uska bhi use karvate ho, to sabkuch itna clear ho jata hai, kahi aur dekhne ki jarurat hi nahi hai. Thank you so much GURUJI.

  • @vicky5784
    @vicky5784 3 หลายเดือนก่อน +1

    Why is not used in React ?
    Because a tag refresh the page but in react we can't refresh the whole page because if we reload the page it's useless for us using react.react create a virtual dom and compare with main page if any difference is there react update the changes not reload the page. So we are not using a tag in react.
    Ignore the English...

  • @shreearjun4576
    @shreearjun4576 29 วันที่ผ่านมา

    We Don't use tag, Bcz it reload the Page, so we use tag.

  • @decoder_pankaj
    @decoder_pankaj 7 หลายเดือนก่อน +1

    Congratulations Sir for 200k #15Days-React-Challenge

  • @Dev-Phantom
    @Dev-Phantom 7 หลายเดือนก่อน +1

    Data Loading in React Router was totally new to me , wonderful

  • @noobgamer703
    @noobgamer703 5 หลายเดือนก่อน

    "Function se hi functionality aati hae" wonderful words

  • @mahendra.g.patil05
    @mahendra.g.patil05 4 หลายเดือนก่อน

    "Thank you so much Hitesh for explaining React Router so clearly. Your teaching method is fantastic! I really appreciate how you broke down each concept step-by-step and provided practical examples. It made everything so much easier to understand. Your ability to make complex topics simple and accessible is truly impressive. Great teaching!"

    • @chaiaurcode
      @chaiaurcode  4 หลายเดือนก่อน

      Happy to help

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

    Sir, with you learning is really easy and enjoyable. Appreciate your efforts.

  • @Hello-World07
    @Hello-World07 6 หลายเดือนก่อน

    I will recommend every beginner to always watch this videos multiple times because the knowledge that is being shared in here is very deep.. I personally only try to understand the concepts first and then when i watch it again i code along with him... thanks hitesh sir for this Gem of a Series...

  • @Spider-Man_67
    @Spider-Man_67 3 หลายเดือนก่อน

    Hitesh Sir, maza aagya paadh kar react Router ke baare me. thank you from heart.

  • @RonnySharma-z1p
    @RonnySharma-z1p 7 หลายเดือนก่อน

    I was tring to learn react router, but got confused a lot, no one made things clear
    Thank to you Hitesh sir, you really made me not loose hope, and give it another chance ❤❤

  • @Hamza-nk3tc
    @Hamza-nk3tc 13 วันที่ผ่านมา +1

    In react we use tag instead of anchor tag because tag refreshes the whole page and destroys the meaning of using React.

  • @btech_Algorithm
    @btech_Algorithm 5 หลายเดือนก่อน +1

    if you are a beginner then follow :-> 1. watch full video in 1.5x try to understand the concept and what we want to do. 2. take a pen and paper then note down the hooks, functionality and other important functions with their syntax (it will help you next time when you revise ) 3. then go with the video and code the project... (......)

  • @adityamaheshwari4250
    @adityamaheshwari4250 5 หลายเดือนก่อน

    I haven't understood that much in harkirat's cohort as much as here.
    Thankyou sir.

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

    Amazing, Awesome explanation Sirji, non one can explain this concept better than you 😀

  • @RohitRaj-od3be
    @RohitRaj-od3be 10 หลายเดือนก่อน

    Best Router Course in the TH-cam sir.
    You Explain it very smoothly.

  • @Outofmatrix457
    @Outofmatrix457 3 หลายเดือนก่อน

    Best video on react router and the way of teaching is out of world thanks alot sir

  • @ruturajbhandari7695
    @ruturajbhandari7695 4 หลายเดือนก่อน

    Comment task done . Amazing quality vedio as always . Thank you

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

    sir Jee ki prep ke baad phele insta chalata tha ab react krta hu only because of you.....❤

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

    sir, while watching this video at first i get confused but it was the summary that helps me to grasp the concept and apply it with a single try and no error .Thank You Hitesh sir ....

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

    Sir, Ye video very conceptual and understandable hai. Mai is series ko enjoy kar raha hun. Apka jo ye react series one of the powerful video hai. Thanks, sir G ♥.

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

    i have submitted my fees with thhis comment
    really helpful playlist i have learned alot from you sir.

  • @CorporateMajduri
    @CorporateMajduri 3 หลายเดือนก่อน

    6:40 project creation
    9:46 basic project setup done
    40:30 url path start

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

    13:55 Ham react me Link tag use karte hai tag nhi, kyuki tag pura page refresh kar deta hai aur wo concept to React me nhi hai, page refresh na ho isliye to ham react padh rhe hai

  • @an_engineer4811
    @an_engineer4811 10 หลายเดือนก่อน +1

    Level of explanation is 🔝..
    To good sir ji

    • @chaiaurcode
      @chaiaurcode  10 หลายเดือนก่อน

      Thanks a ton 🙏😊

  • @Dev-Phantom
    @Dev-Phantom 7 หลายเดือนก่อน +1

    13:59 - tag is not used in React Because It Refreshes the whole Page Wcan use Link Tag

  • @riderzzone6373
    @riderzzone6373 5 หลายเดือนก่อน

    1:02:14 "Function se hi functionality aati hai 😎" thankyou sir ji love from bengal

  • @HimanshuSharma-gf4ij
    @HimanshuSharma-gf4ij 6 หลายเดือนก่อน

    tag se poora page reload hota h islie hm link aur navlink use krte hn, navlink mei is active wala feature milta h