Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

reducer.js 353B

123456789101112131415161718
  1. /* @flow */
  2. import { ReducerRegistry } from '../base/redux';
  3. import { OPEN_WEB_APP } from './actionTypes';
  4. ReducerRegistry.register('features/deep-linking', (state = {}, action) => {
  5. switch (action.type) {
  6. case OPEN_WEB_APP: {
  7. return {
  8. ...state,
  9. launchInWeb: true
  10. };
  11. }
  12. }
  13. return state;
  14. });