Madhu Sainimadhusaini22.hashnode.dev·Mar 21, 2024What is Higher Order Functions & Why you should use them?Have you ever found yourself writing the same code snippet over and over in your React projects? Maybe it's authentication logic, data fetching, or error handling. These are all crucial aspects of building a functional application, but constantly dup...10 likes·30 readshigher-order functions
sudheer nunnawiredwhiz.hashnode.dev·Jan 27, 2024Higher Order Components (HOC) in ReactIn the JSX world, an HOC is basically this: a component that takes another component as an argument and returns a new component that is the result of the composition of the two. HOC’s are great for shared behavior across components that we’d rather n...react-hoc
Dileepa Chandimablog.dilipchandima.com·Jun 3, 2023React Higher Order Component (HOC)Hello guys, Today I'm going to explain about Higher Order Components in React, What is HOC HOC is a function that gets a Component as an argument and returns another Component instead of JSX, we are using these components to share complex logic and b...HOC
Smart Shocksmartshock.hashnode.dev·Apr 5, 2023Understanding Higher-Order Components in React: A Simple GuideHigher-Order Components (HOCs) are a powerful and flexible pattern in React that allows for code reuse and composition. In this article, we will explore what HOCs are, how they work, and provide an example of how to use them in your React projects. W...34 reads25 React Exercises for Practical LearningHOC
Md.Al-Amin Sahedsahedthought.hashnode.dev·Jan 2, 2022Higher Order Component in React.jsHigher Order Component (HOC) is an advanced technique in React.js. I try to explain this in very simple words with examples. Now, we should know what is HOC and what problems can be solved in real life using HOC? Higher Order Component is a function ...8 likes·129 readsReactReact