Please enable JavaScript.
Coggle requires JavaScript to display documents.
Deep React - Coggle Diagram
Deep React
React
.createElement()
used to create an element, including components
-
-
-
-
.cloneElement()
clones an element, identically, including the refs
-
-
Rerendering
-
what else get affected
outside of useEffect
useMemo
, useCallback
-
useEffect
, useMemo
,
useCallback
-
-
-
Event Binding
what and why
-
making this.attribute, this.function() bound to the caller's object
-
-