In the context of React's lazy loading, what type of components can be directly imported using React.lazy()?

  • Class Components
  • Functional Components
  • Higher-Order Components
  • Redux Components
In the context of React's lazy loading, you can directly import Functional Components using React.lazy(). Class Components and Higher-Order Components are not directly supported for lazy loading using React.lazy(). Redux Components also need to be wrapped in Functional Components to use React.lazy().
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *