@@ -7,14 +7,15 @@ import SelectTutorialPage from './containers/SelectTutorial'
77import OverviewPage from './containers/Overview'
88import CompletedPage from './containers/Tutorial/CompletedPage'
99import LevelSummaryPage from './containers/Tutorial/LevelPage'
10+ import SelectEmptyWorkspace from './containers/Check/SelectWorkspace'
1011
1112const Routes = ( ) => {
1213const { context, send, Router, Route} = useRouter ( )
1314return (
1415< Workspace >
1516< Router >
1617{ /* Setup */ }
17- < Route path = { [ 'Setup.Startup' , 'Setup.Authenticate' , 'Setup.LoadStoredTutorial' ] } >
18+ < Route path = { [ 'Setup.Startup' , 'Setup.Authenticate' , 'Setup.LoadStoredTutorial' , 'Setup.CheckEmptyWorkspace' ] } >
1819< LoadingPage text = "Launching..." context = { context } />
1920</ Route >
2021< Route path = "Setup.Start" >
@@ -23,6 +24,9 @@ const Routes = () => {
2324< Route path = { [ 'Setup.LoadTutorialSummary' , 'Setup.LoadTutorialData' , 'Setup.SetupNewTutorial' ] } >
2425< LoadingPage text = "Loading Tutorial..." context = { context } />
2526</ Route >
27+ < Route path = { [ 'Setup.NonEmptyWorkspace' , 'Setup.RequestEmptyWorkspace' ] } >
28+ < SelectEmptyWorkspace send = { send } />
29+ </ Route >
2630< Route path = "Setup.Error" >
2731< LoadingPage text = "Error" context = { context } />
2832</ Route >