import 'babel-polyfill'; import axios from 'axios'; import { fromJS } from 'immutable'; import { createStore } from 'actionizer'; import { select, call, reduce, fork, cancel, delegate } from 'actionizer/commands'; import debounce from 'lodash.debounce'; const initialState = fromJS({ counter: 0, items: { 1: {id: 1, name: 'hoge'}, 2: {id: 2, name: 'fuga'} } }); // Customize notifier. const notify =