https://codesandbox.io/s/base-redux-flow-xtngf?file=/src/index.js:0-1476
// Base redux
const createStore = (reducer, initialState = {}) => {
let state = initialState;
const subscribers = [];
const dispatch = (action /* {type: SOME_TYPE} */) => {
state = reducer(state, action);