exampleEpic.js 212 B

1234567891011121314
  1. import { map } from 'rxjs/operators';
  2. export default function example(action$) {
  3. return action$.ofType('PING')
  4. .pipe(
  5. map(function () {
  6. return {type: 'PONG'};
  7. })
  8. );
  9. };