-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.jsx
36 lines (32 loc) · 918 Bytes
/
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
import HelloWorldPage from './client/HelloWorldPage';
import PostcardPage from './client/PostcardPage';
import BodyMassIndexPage from './client/BodyMassIndexPage';
import EditorPage from './client/EditorPage';
var DynamicRoutes = [{
'name': 'HelloWorldPage',
'path': '/hello-world',
'component': HelloWorldPage
}, {
'name': 'BodyMassIndexPage',
'path': '/body-mass-index',
'component': BodyMassIndexPage
}, {
'name': 'EditorPage',
'path': '/editor',
'component': EditorPage
}];
var SidebarElements = [];
let SidebarWorkflows = [{
'primaryText': 'Example Page',
'to': '/hello-world',
'href': '/hello-world'
}, {
'primaryText': 'Body Mass Calculator',
'to': '/body-mass-index',
'href': '/body-mass-index'
}, {
'primaryText': 'Editor',
'to': '/editor',
'href': '/editor'
}];
export { SidebarWorkflows, SidebarElements, DynamicRoutes, SamplePage, PostcardPage, BodyMassIndexPage };