const versionReducer = (state = 5, action) => {
    const { version } = action;
    switch (action.type) {
        case VERSION.SET_VERSION:
            return version;