From 27a4a4702f38a8c2c2e8f6c32fd41f73477c1650 Mon Sep 17 00:00:00 2001 From: sunilsoni Date: Tue, 17 Oct 2023 12:20:08 +0530 Subject: [PATCH] Lazy Loading --- docs/ui/react/components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ui/react/components.md b/docs/ui/react/components.md index 88d3efa..9b40ca1 100644 --- a/docs/ui/react/components.md +++ b/docs/ui/react/components.md @@ -1447,7 +1447,7 @@ On the other hand, we should not use `PureComponent()` as a base component if: A **Higher-Order Component(HOC)** is a function that takes a component and returns a new component. It is the advanced technique in React.js for reusing a component logic.

- Higher Order Components + Higher Order Components

Higher-Order Components are not part of the React API. They are the pattern that emerges from React\'s compositional nature. The component transforms props into UI, and a higher-order component converts a component into another component. The examples of HOCs are Redux\'s connect and Relay\'s createContainer.