Redux

Redux – Middleware

  • Post author:
  • Post category:Redux
  • Post comments:1 Comment

Redux itself is synchronous, so how the async operations like network request work with Redux? Here middlewares come handy. As discussed earlier, reducers are the place where all the execution logic is written. Reducer…

Continue ReadingRedux – Middleware

Redux – Store

  • Post author:
  • Post category:Redux
  • Post comments:1 Comment

A store is an immutable object tree in Redux. A store is a state container which holds the application’s state. Redux can have only a single store in your application.…

Continue ReadingRedux – Store