What is a Higher Order Component (HOC) HOCs are a React design pattern for sharing abstracted logic and behavior. A HOC is a function that takes a component, wraps it with new functionality and returns the newly wrapped component. Benefits Code Reusability Avoid duplication and keep your code DRY by abstracting common functionality into HOCs. … Continue reading React design patterns – Higher Order Components