In an e-commerce application, you want to implement a feature to undo the last action (like adding an item to the cart). Which feature of NgRx would you leverage for this?

  • Actions
  • Effects
  • Selectors
  • Time-travel debugging
To implement an undo feature in NgRx, you would leverage "Time-travel debugging." This feature allows you to step backward and forward through the state changes, effectively enabling undo and redo functionality in your application.
Add your answer
Loading...

Leave a comment

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