The code powering m.abunchtell.com https://m.abunchtell.com
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

15 satır
358 B

  1. import { STATUS_CARD_FETCH_SUCCESS } from '../actions/cards';
  2. import Immutable from 'immutable';
  3. const initialState = Immutable.Map();
  4. export default function cards(state = initialState, action) {
  5. switch(action.type) {
  6. case STATUS_CARD_FETCH_SUCCESS:
  7. return state.set(action.id, Immutable.fromJS(action.card));
  8. default:
  9. return state;
  10. }
  11. };