| Línea 10... |
Línea 10... |
| 10 |
import NotificationAlert from '../components/UI/notification/NotificationAlert'
|
10 |
import NotificationAlert from '../components/UI/notification/NotificationAlert'
|
| 11 |
import LoaderContainer from '../components/UI/LoaderContainer'
|
11 |
import LoaderContainer from '../components/UI/LoaderContainer'
|
| 12 |
import NotificationsPage from '../pages/notifications/NotificationsPage'
|
12 |
import NotificationsPage from '../pages/notifications/NotificationsPage'
|
| 13 |
import SearchPage from '../pages/search/SearchPage'
|
13 |
import SearchPage from '../pages/search/SearchPage'
|
| 14 |
import KnowledgeAreaPage from '../pages/knowledge-area/KnowledgeAreaPage'
|
14 |
import KnowledgeAreaPage from '../pages/knowledge-area/KnowledgeAreaPage'
|
| - |
|
15 |
import KnowledgeViewPage from '../pages/knowledge-area/KnowledgeViewPage'
|
| Línea 15... |
Línea 16... |
| 15 |
|
16 |
|
| 16 |
const Header = lazy(() => import('../components/navbar/Header'))
|
17 |
const Header = lazy(() => import('../components/navbar/Header'))
|
| 17 |
const Auth = lazy(() => import('../pages/auth/Auth'))
|
18 |
const Auth = lazy(() => import('../pages/auth/Auth'))
|
| 18 |
const DashboardPage = lazy(() => import('../pages/dashboard/DashboardPage'))
|
19 |
const DashboardPage = lazy(() => import('../pages/dashboard/DashboardPage'))
|
| Línea 261... |
Línea 262... |
| 261 |
</PrivateRoute>
|
262 |
</PrivateRoute>
|
| 262 |
<PrivateRoute path="/search" isAuthenticated={isAuth}>
|
263 |
<PrivateRoute path="/search" isAuthenticated={isAuth}>
|
| 263 |
<SearchPage />
|
264 |
<SearchPage />
|
| 264 |
</PrivateRoute>
|
265 |
</PrivateRoute>
|
| Línea -... |
Línea 266... |
| - |
|
266 |
|
| - |
|
267 |
<PrivateRoute
|
| - |
|
268 |
path="/knowledge-area/view/:uuid"
|
| - |
|
269 |
isAuthenticated={isAuth}
|
| - |
|
270 |
>
|
| - |
|
271 |
<KnowledgeViewPage />
|
| 265 |
|
272 |
</PrivateRoute>
|
| 266 |
<PrivateRoute path="/knowledge-area" isAuthenticated={isAuth}>
|
273 |
<PrivateRoute path="/knowledge-area" isAuthenticated={isAuth}>
|
| 267 |
<KnowledgeAreaPage />
|
274 |
<KnowledgeAreaPage />
|
| Línea 268... |
Línea 275... |
| 268 |
</PrivateRoute>
|
275 |
</PrivateRoute>
|