Please enable JavaScript.
Coggle requires JavaScript to display documents.
Epic React - Coggle Diagram
Epic React
React Fundamentals
-
-
-
Rendering elements
-
-
React.createElement()
creates actual React components whereas passing functions to ReactDOM.render()
does not
-
-
-
-
-
Advanced React Hooks
-
-
-
useContext
Context should be scoped to the lowest possible component tree for better performance and maintainability
-
-
-
-
-
Performance
Code splitting
Eager loading
Dynamic imports can be called in event handlers to import modules as the user interacts with the page
-
-
-
-
-
-
-
Concepts
Memoization
Caching of the output for a set of inputs so that subsequent calculations with the same input can be avoided
-
-
-
-
-
Patterns
-
Compound components
-
-
-
Allowed types, dom, context
-
-