The code powering m.abunchtell.com https://m.abunchtell.com
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617
  1. import { MODAL_OPEN, MODAL_CLOSE } from '../actions/modal';
  2. const initialState = {
  3. modalType: null,
  4. modalProps: {},
  5. };
  6. export default function modal(state = initialState, action) {
  7. switch(action.type) {
  8. case MODAL_OPEN:
  9. return { modalType: action.modalType, modalProps: action.modalProps };
  10. case MODAL_CLOSE:
  11. return initialState;
  12. default:
  13. return state;
  14. }
  15. };