export function loadStatsSync()

in src/actions/statsActions.js [15:21]


export function loadStatsSync() {
  return function (dispatch) {
    dispatch(loadStatsRequest());
    const stats = statsApi.getStatsSync()
    dispatch(loadStatsSuccess(stats));
  };
}