|
|
|
|
61
|
{/* bellow, the '?' is important, it avoid to have to declare another route for CONTENT_LIST which could double match */}
|
61
|
{/* bellow, the '?' is important, it avoid to have to declare another route for CONTENT_LIST which could double match */}
|
62
|
<PrivateRoute path={PAGE.WORKSPACE.CONTENT(':idws', ':idcts?')} component={WorkspaceContent} />
|
62
|
<PrivateRoute path={PAGE.WORKSPACE.CONTENT(':idws', ':idcts?')} component={WorkspaceContent} />
|
63
|
<PrivateRoute path={PAGE.ACCOUNT} component={Account} />
|
63
|
<PrivateRoute path={PAGE.ACCOUNT} component={Account} />
|
64
|
- <PrivateRoute path={PAGE.WORKSPACE.DASHBOARD()} component={Dashboard} />
|
|
|
|
|
64
|
+ <PrivateRoute exact path={PAGE.WORKSPACE.DASHBOARD()} component={Dashboard} />
|
65
|
<PrivateRoute path={'/wip/:cp'} component={WIPcomponent} /> {/* for testing purpose only */}
|
65
|
<PrivateRoute path={'/wip/:cp'} component={WIPcomponent} /> {/* for testing purpose only */}
|
66
|
|
66
|
|
67
|
<Footer />
|
67
|
<Footer />
|