Higher order component in react in telugu | HOC in React

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 ม.ค. 2025

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

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

    This is the best tutorial about this concept that i have seen. thank you alot

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

    Thank you so much bhayya, u made it with easy understanding and the example was very good

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

    Chala simple ga explain chesaru

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

    super bro,continue viddeos daily ,we are with you

  • @PraveenKumar-uj2ih
    @PraveenKumar-uj2ih 3 ปีที่แล้ว +5

    Brother Please Make Videos on SpringBoot... I Started Learning SpringBoot From Ur Video 😍 #That Voice And That Way Of Explanation 👌

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

    Very nice explaination

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

    Thank you for clear explanation and got clear idea about HOC. Expecting more videos from you regarding React

  • @mahesh-chejarla
    @mahesh-chejarla 3 ปีที่แล้ว +2

    Good explanation, Please upload more videos

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

    Useful tutorial anna..

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

    Good explanation. It would have been much better with login and logout button.

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

    Thank you bro 🙏🙏🙏

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

    Frequent ga videos cheyu bro 👍

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

    We can use jwt token wright ?
    We have authentication why we need to use can u explain

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

    if possible do one real time application on react with backend like node nd express....🙏🙏🙏

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

      Hi,
      I'd already uploaded one complete real time application video with node nd express as a backend. Video title will be (MERN Stack Full Tutorial for Beginners (MongoDB, Express, React, Node.js) in Telugu)
      Please watch it bro, for sure it helps you :)

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

    Can we save jwt token in local storage in the browser is it good practice??? Please help me 👍

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

      Hi,
      Not too safe to have jwt token in local storage, because any of the third-party scripts you include in your page is compromised, it can access all your users' tokens.
      So, to keep your application more safer side, you can store JWTs inside an httpOnly cookie.
      Hope this helps you :)

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

    💗💗💗

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

    Anna HOC.js file function component aa ...class component aa anna ardham kaledu plz explain

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

      Hi,
      Hoc.js file is functional component, it returns class component.
      That class component returns (function App.js which we got as input parameter)
      Hope this helps you :)

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

    Bro react ochu kani job ledhu
    Em cheyali 😢

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

    Function component lo class keywork use cheyacha anna naku ardham kaledu plz explain anna

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

      In general scenario
      1. Direct declaration of function inside a function
      2. Direct declaration of class inside a class
      3. Direct declaration of function inside a class
      4. Direct declaration of class inside a function
      All not possible due to (not a valid React child),
      But all this cases are possible in Wrapping scenario.
      For example: In Hoc concept wrapp the export component as below
      -> export default Hoc(App); ( valid React child)
      Please note : Even in wrapping scenario, we should not use name of class or function
      for example : In 1st scenario and 4th scenario
      1. Direct declaration of function inside a function
      function App(){
      return (
      function(){ // not using function name
      return Not using function name
      }
      )
      }
      4. Direct declaration of class inside a function
      function App(){
      return (
      class extends React.Component(){ // not using class name
      render(){return Not using class name }
      }
      )
      }
      Please note : above scenario possible only in Wrapping scenario
      please don't try in regular scenarios, it throw errors
      hope this helps :)

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

    anna debounce and throttling topic explain chaindi.

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

    Hi anna what is

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

      Hi @Kamarajugadda Manjula
      Here, is (App.js) that we are taking it as input parameter to HOC component. lets say
      const HOC = (component) =>{
      // above taking (component parameter is )
      }
      The value which we export by wrapping HOC(), that is
      Hope it helps :)