export function loadSupport () {
  return function (dispatch) {
    dispatch({ type: SUPPORT_LOAD });
    getSupport()
    .then(support => dispatch(loadSupportSuccess(support)));