When you want to defer the loading of a component until it's needed, you can use React's ________ feature.

  • Suspense
  • Lazy
  • Async
  • Deferred
When you want to defer the loading of a component until it's needed, you can use React's Lazy feature. The Lazy function allows you to load components asynchronously, improving the initial loading time of your application. The other options are not specific to deferring component loading in React.
Add your answer
Loading...

Leave a comment

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