-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.js
More file actions
58 lines (52 loc) · 2.08 KB
/
Copy pathindex.js
File metadata and controls
58 lines (52 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import approvalRateByDeadline from './approvalRateByDeadline';
import approvedARAndTRByGoalCategory from './approvedARAndTRByGoalCategory';
import dashboardOverview from './dashboardOverview';
import frequencyGraph from './frequencyGraph';
import goalDashboard from './goalDashboard';
import goalDashboardGoals from './goalDashboardGoals';
import goalStatusByGoalName from './goalStatusByGoalName';
import activeDeficientCitationsWithTtaSupport from './monitoring/activeDeficientCitationsWithTtaSupport';
import activeNoncompliantCitationsWithTtaSupport from './monitoring/activeNoncompliantCitationsWithTtaSupport';
import monitoringOverview from './monitoring/monitoringOverview';
import monitoringTta from './monitoring/monitoringTta';
import reportCountByFindingCategory from './monitoring/reportCountByFindingCategory';
import overview from './overview';
import standardGoalsList from './standardGoalsList';
import targetPopulationTable from './targetPopulationTable';
import { topicFrequencyGraph } from './topicFrequencyGraph';
import totalHrsAndRecipientGraph from './totalHrsAndRecipientGraph';
import trHoursOfTrainingByNationalCenter from './trHoursOfTrainingByNationalCenter';
import trOverview from './trOverview';
import trSessionsByTopic from './trSessionsByTopic';
import trSessionsForRecipient from './trSessionsForRecipient';
import trStandardGoalList from './trStandardGoalList';
import ttaHistoryOverview from './ttaHistoryOverview';
/*
All widgets need to be added to this object
*/
export default {
overview,
dashboardOverview,
totalHrsAndRecipientGraph,
standardGoalsList,
topicFrequencyGraph,
targetPopulationTable,
frequencyGraph,
goalStatusByGoalName,
trOverview,
trStandardGoalList,
trSessionsByTopic,
trSessionsForRecipient,
ttaHistoryOverview,
trHoursOfTrainingByNationalCenter,
approvalRateByDeadline,
// Monitoring widgets
activeDeficientCitationsWithTtaSupport,
activeNoncompliantCitationsWithTtaSupport,
monitoringOverview,
reportCountByFindingCategory,
monitoringTta,
goalDashboard,
goalDashboardGoals,
approvedARAndTRByGoalCategory,
};