1
1
import * as React from 'react'
2
2
import useRouter from './components/Router'
3
3
import Workspace from './components/Workspace'
4
- import ContinuePage from './containers/Continue '
5
- import LoadingPage from './containers/LoadingPage '
4
+ import LoadingPage from './containers/Loading '
5
+ import StartPage from './containers/Start '
6
6
import NewPage from './containers/New'
7
7
import OverviewPage from './containers/Overview'
8
8
import CompletedPage from './containers/Tutorial/CompletedPage'
@@ -13,26 +13,26 @@ const Routes = () => {
13
13
return (
14
14
< Workspace >
15
15
< Router >
16
- { /*Start */ }
17
- < Route path = { [ 'Start .Startup' , 'Start .Authenticate' , 'Start.NewOrContinue ' ] } >
16
+ { /*Setup */ }
17
+ < Route path = { [ 'Setup .Startup' , 'Setup .Authenticate' , 'Setup.LoadStoredTutorial ' ] } >
18
18
< LoadingPage text = "Launching..." context = { context } />
19
19
</ Route >
20
- < Route path = "Start.ContinueTutorial " >
21
- < ContinuePage send = { send } context = { context } />
20
+ < Route path = "Setup.Start " >
21
+ < StartPage send = { send } context = { context } />
22
22
</ Route >
23
- < Route path = { [ 'Start .LoadTutorialSummary' , 'Start .LoadTutorialData' , 'Start .SetupNewTutorial' ] } >
23
+ < Route path = { [ 'Setup .LoadTutorialSummary' , 'Setup .LoadTutorialData' , 'Setup .SetupNewTutorial' ] } >
24
24
< LoadingPage text = "Loading Tutorial..." context = { context } />
25
25
</ Route >
26
- < Route path = "Start .Error" >
26
+ < Route path = "Setup .Error" >
27
27
< LoadingPage text = "Error" context = { context } />
28
28
</ Route >
29
- < Route path = "Start .SelectTutorial" >
29
+ < Route path = "Setup .SelectTutorial" >
30
30
< NewPage send = { send } context = { context } />
31
31
</ Route >
32
- < Route path = "Start .Summary" >
32
+ < Route path = "Setup .Summary" >
33
33
< OverviewPage send = { send } context = { context } />
34
34
</ Route >
35
- < Route path = "Start .SetupNewTutorial" >
35
+ < Route path = "Setup .SetupNewTutorial" >
36
36
< LoadingPage text = "Configuring tutorial..." context = { context } />
37
37
</ Route >
38
38
{ /* Tutorial */ }