-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.jsx
44 lines (35 loc) · 1 KB
/
index.jsx
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
import React from 'react';
import HealthgraphPage from './client/HealthgraphPage';
import SyntheaAnalysisPage from './client/SyntheaAnalysisPage';
import {
HealthGraphFooterButtons,
TurntableFooterButtons
} from './client/HealthGraphFooterButtons';
var DynamicRoutes = [{
'name': 'HealthgraphPage',
'path': '/healthgraph',
'component': HealthgraphPage
}, {
'name': 'SyntheaAnalysisPage',
'path': '/synthea-analysis',
'component': SyntheaAnalysisPage
}];
var SidebarWorkflows = [{
'primaryText': 'Healthgraph',
'to': '/healthgraph',
'iconName': 'healthgraph'
}, {
'primaryText': 'Synthea Analysis',
'to': '/synthea-analysis',
'href': '/synthea-analysis',
'iconName': 'addressBook'
}];
let FooterButtons = [{
pathname: '/healthgraph',
component: <HealthGraphFooterButtons />
}, {
pathname: '/',
component: <HealthGraphFooterButtons />
}];
let MainPage = HealthgraphPage;
export { MainPage, SidebarWorkflows, DynamicRoutes, HealthgraphPage, SyntheaAnalysisPage, FooterButtons };