@@ -10,6 +10,7 @@ import JobDetails from "./routes/JobDetails";
10
10
import JobForm from "./routes/JobForm" ;
11
11
import TeamAccess from "./routes/TeamAccess" ;
12
12
import CreateNewTeam from "./routes/CreateNewTeam" ;
13
+ import CreateTeamLanding from "./routes/CreateNewTeam/pages/CreateTeamLanding" ;
13
14
import InputSkills from "./routes/CreateNewTeam/pages/InputSkills" ;
14
15
import InputJobDescription from "./routes/CreateNewTeam/pages/InputJobDescription" ;
15
16
import SelectRole from "./routes/CreateNewTeam/pages/SelectRole" ;
@@ -25,7 +26,6 @@ export default function Root() {
25
26
< Router >
26
27
< Redirect from = "/taas" to = "/taas/myteams" exact />
27
28
< MyTeamsList path = "/taas/myteams" />
28
- < CreateNewTeam path = "/taas/createnewteam" />
29
29
< MyTeamsDetails path = "/taas/myteams/:teamId" />
30
30
< JobDetails path = "/taas/myteams/:teamId/positions/:jobId" />
31
31
< JobForm path = "/taas/myteams/:teamId/positions/:jobId/edit" />
@@ -34,9 +34,12 @@ export default function Root() {
34
34
< ResourceBookingForm path = "/taas/myteams/:teamId/rb/:resourceBookingId/edit" />
35
35
< PositionDetails path = "/taas/myteams/:teamId/positions/:positionId/candidates" />
36
36
< TeamAccess path = "/taas/myteams/:teamId/access" />
37
- < InputJobDescription path = "/taas/createnewteam/jd/*" />
38
- < InputSkills path = "/taas/createnewteam/skills/*" />
39
- < SelectRole path = "/taas/createnewteam/role/*" />
37
+ < CreateNewTeam path = "/taas/createnewteam" >
38
+ < CreateTeamLanding path = "/" />
39
+ < InputJobDescription path = "jd/*" />
40
+ < InputSkills path = "skills/*" />
41
+ < SelectRole path = "role/*" />
42
+ </ CreateNewTeam >
40
43
</ Router >
41
44
42
45
{ /* Global config for Toastr popups */ }
0 commit comments