| Línea 13... |
Línea 13... |
| 13 |
import HabitsRoutes from './habits/routes';
|
13 |
import HabitsRoutes from './habits/routes';
|
| 14 |
import GroupRoutes from './groups/routes';
|
14 |
import GroupRoutes from './groups/routes';
|
| 15 |
import PrivateRoutesLayout from '@layouts/private-routes';
|
15 |
import PrivateRoutesLayout from '@layouts/private-routes';
|
| 16 |
import KnowledgesRoutes from '@knowledges/routes/knowledges-routes';
|
16 |
import KnowledgesRoutes from '@knowledges/routes/knowledges-routes';
|
| Línea -... |
Línea 17... |
| - |
|
17 |
|
| 17 |
|
18 |
/* Modules */
|
| - |
|
19 |
const MicrolearningRoutes = lazy(() => import('@microlearning/routes/microlearning-routes'));
|
| - |
|
20 |
const MarketplaceRoutes = lazy(() => import('@marketplace/routes'));
|
| - |
|
21 |
|
| 18 |
const MicrolearningRoutes = lazy(() => import('@microlearning/routes/microlearning-routes'));
|
22 |
/* Layouts */
|
| 19 |
const InmailLayout = lazy(() => import('@layouts/inmail/inmail-layout'));
|
23 |
const InmailLayout = lazy(() => import('@layouts/inmail/inmail-layout'));
|
| Línea 20... |
Línea 24... |
| 20 |
const AuthLayout = lazy(() => import('@layouts/auth-layout'));
|
24 |
const AuthLayout = lazy(() => import('@layouts/auth-layout'));
|
| 21 |
|
25 |
|
| Línea 69... |
Línea 73... |
| 69 |
() => import('@pages/company/CompanyInvitationsReceivedPage')
|
73 |
() => import('@pages/company/CompanyInvitationsReceivedPage')
|
| 70 |
);
|
74 |
);
|
| 71 |
const ProfileViewPage = lazy(() => import('@pages/profiles/ProfileViewPage'));
|
75 |
const ProfileViewPage = lazy(() => import('@pages/profiles/ProfileViewPage'));
|
| 72 |
const ProfileEditPage = lazy(() => import('@pages/profiles/ProfileEditPage'));
|
76 |
const ProfileEditPage = lazy(() => import('@pages/profiles/ProfileEditPage'));
|
| 73 |
const CompanyViewPage = lazy(() => import('@pages/company/CompanyViewPage'));
|
77 |
const CompanyViewPage = lazy(() => import('@pages/company/CompanyViewPage'));
|
| 74 |
const MarketplacePage = lazy(() => import('@pages/marketplace/MarketplacePage'));
|
- |
|
| 75 |
|
- |
|
| 76 |
const NotificationsPage = lazy(() => import('@pages/notifications/NotificationsPage'));
|
78 |
const NotificationsPage = lazy(() => import('@pages/notifications/NotificationsPage'));
|
| 77 |
const SearchPage = lazy(() => import('@pages/search/SearchPage'));
|
79 |
const SearchPage = lazy(() => import('@pages/search/SearchPage'));
|
| Línea 78... |
Línea 80... |
| 78 |
|
80 |
|
| 79 |
const PostViewPage = lazy(() => import('@pages/posts/PostViewPage'));
|
81 |
const PostViewPage = lazy(() => import('@pages/posts/PostViewPage'));
|
| Línea 163... |
Línea 165... |
| 163 |
<Route path='requests-sent' element={<CompanyRequestSendPage />} />
|
165 |
<Route path='requests-sent' element={<CompanyRequestSendPage />} />
|
| 164 |
<Route path='invitations-received' element={<CompanyInvitationsReceivedPage />} />
|
166 |
<Route path='invitations-received' element={<CompanyInvitationsReceivedPage />} />
|
| 165 |
<Route path='view/:uuid' element={<CompanyViewPage />} />
|
167 |
<Route path='view/:uuid' element={<CompanyViewPage />} />
|
| 166 |
</Route>
|
168 |
</Route>
|
| Línea 167... |
Línea 169... |
| 167 |
|
169 |
|
| Línea 168... |
Línea 170... |
| 168 |
<Route path='/marketplace' element={<MarketplacePage />} />
|
170 |
<Route path='/marketplace/*' element={<MarketplaceRoutes />} />
|
| 169 |
|
171 |
|
| 170 |
<Route path='/my-coach'>
|
172 |
<Route path='/my-coach'>
|
| 171 |
<Route index element={<MyCoachPage />} />
|
173 |
<Route index element={<MyCoachPage />} />
|