11import * as React from 'react'
22import useRouter from './components/Router'
33import 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 '
66import NewPage from './containers/New'
77import OverviewPage from './containers/Overview'
88import CompletedPage from './containers/Tutorial/CompletedPage'
@@ -13,26 +13,26 @@ const Routes = () => {
1313return (
1414< Workspace >
1515< Router >
16- { /*Start */ }
17- < Route path = { [ 'Start .Startup' , 'Start .Authenticate' , 'Start.NewOrContinue ' ] } >
16+ { /*Setup */ }
17+ < Route path = { [ 'Setup .Startup' , 'Setup .Authenticate' , 'Setup.LoadStoredTutorial ' ] } >
1818< LoadingPage text = "Launching..." context = { context } />
1919</ Route >
20- < Route path = "Start.ContinueTutorial " >
21- < ContinuePage send = { send } context = { context } />
20+ < Route path = "Setup.Start " >
21+ < StartPage send = { send } context = { context } />
2222</ Route >
23- < Route path = { [ 'Start .LoadTutorialSummary' , 'Start .LoadTutorialData' , 'Start .SetupNewTutorial' ] } >
23+ < Route path = { [ 'Setup .LoadTutorialSummary' , 'Setup .LoadTutorialData' , 'Setup .SetupNewTutorial' ] } >
2424< LoadingPage text = "Loading Tutorial..." context = { context } />
2525</ Route >
26- < Route path = "Start .Error" >
26+ < Route path = "Setup .Error" >
2727< LoadingPage text = "Error" context = { context } />
2828</ Route >
29- < Route path = "Start .SelectTutorial" >
29+ < Route path = "Setup .SelectTutorial" >
3030< NewPage send = { send } context = { context } />
3131</ Route >
32- < Route path = "Start .Summary" >
32+ < Route path = "Setup .Summary" >
3333< OverviewPage send = { send } context = { context } />
3434</ Route >
35- < Route path = "Start .SetupNewTutorial" >
35+ < Route path = "Setup .SetupNewTutorial" >
3636< LoadingPage text = "Configuring tutorial..." context = { context } />
3737</ Route >
3838{ /* Tutorial */ }