Which of the following is a built-in feature of Redux but not inherently provided by the Context API?

  • Component props.
  • Middleware support.
  • State management.
  • Time-travel debugging.
Middleware support is a built-in feature of Redux but not inherently provided by the Context API. Middleware allows you to extend Redux's behavior, enabling tasks like logging, asynchronous actions, and more. While Context API can manage state, it doesn't include middleware support for such additional functionality.
Add your answer
Loading...

Leave a comment

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