Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

middleware.web.js 469B

123456789101112
  1. import { MiddlewareRegistry } from '../base/redux';
  2. /**
  3. * Middleware which intercepts actions and updates the legacy component
  4. * {@code VideoLayout} as needed. The purpose of this middleware is to redux-ify
  5. * {@code VideoLayout} without having to simultaneously react-ifying it.
  6. *
  7. * @param {Store} store - The redux store.
  8. * @returns {Function}
  9. */
  10. // eslint-disable-next-line no-unused-vars
  11. MiddlewareRegistry.register(store => next => action => next(action));