AugurProject/augur-ui

View on GitHub
src/modules/reports/actions/update-reporting-window-stats.js

Summary

Maintainability
A
0 mins
Test Coverage
export const UPDATE_REPORTING_WINDOW_STATS = "UPDATE_REPORTING_WINDOW_STATS";

export function updateReportingWindowStats(windowStats) {
  return {
    type: UPDATE_REPORTING_WINDOW_STATS,
    data: { windowStats }
  };
}