@@ -7,14 +7,15 @@ import SelectTutorialPage from './containers/SelectTutorial'
7
7
import OverviewPage from './containers/Overview'
8
8
import CompletedPage from './containers/Tutorial/CompletedPage'
9
9
import LevelSummaryPage from './containers/Tutorial/LevelPage'
10
+ import SelectEmptyWorkspace from './containers/Check/SelectWorkspace'
10
11
11
12
const Routes = ( ) => {
12
13
const { context, send, Router, Route} = useRouter ( )
13
14
return (
14
15
< Workspace >
15
16
< Router >
16
17
{ /* Setup */ }
17
- < Route path = { [ 'Setup.Startup' , 'Setup.Authenticate' , 'Setup.LoadStoredTutorial' ] } >
18
+ < Route path = { [ 'Setup.Startup' , 'Setup.Authenticate' , 'Setup.LoadStoredTutorial' , 'Setup.CheckEmptyWorkspace' ] } >
18
19
< LoadingPage text = "Launching..." context = { context } />
19
20
</ Route >
20
21
< Route path = "Setup.Start" >
@@ -23,6 +24,9 @@ const Routes = () => {
23
24
< Route path = { [ 'Setup.LoadTutorialSummary' , 'Setup.LoadTutorialData' , 'Setup.SetupNewTutorial' ] } >
24
25
< LoadingPage text = "Loading Tutorial..." context = { context } />
25
26
</ Route >
27
+ < Route path = { [ 'Setup.NonEmptyWorkspace' , 'Setup.RequestEmptyWorkspace' ] } >
28
+ < SelectEmptyWorkspace send = { send } />
29
+ </ Route >
26
30
< Route path = "Setup.Error" >
27
31
< LoadingPage text = "Error" context = { context } />
28
32
</ Route >