In React, ______ and Suspense are used together to implement lazy loading of components.

  • React.lazy()
  • useEffect() and Fetch
  • useState() and Axios
  • useMemo() and Promises
In React, React.lazy() and Suspense are used together to implement lazy loading of components. React.lazy() allows you to dynamically load a component when it's needed, and Suspense is used to handle loading states. The other options are not directly related to lazy loading components.
Add your answer
Loading...

Leave a comment

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