import 'rxjs'; export default function example(action$) { return action$.ofType('PING') .mapTo({type: 'PONG'}); };