Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6799 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6799 Rev 6830
Línea 1... Línea 1...
1
import React, { lazy } from 'react'
1
import React, { lazy } from 'react'
2
import { useSelector } from 'react-redux'
2
import { useSelector } from 'react-redux'
Línea 3... Línea -...
3
 
-
 
4
const ProfileView = lazy(() =>
3
 
5
  import('../../layouts/profile-view/default/ProfileView')
-
 
6
)
4
const ProfileView = lazy(() => import('../../layouts/profile-view/ProfileView'))
7
const ProfileViewLinkedIn = lazy(() =>
5
const ProfileViewLinkedIn = lazy(() =>
8
  import('../../layouts/profile-view/linkedin/ProfileViewLinkedIn')
6
  import('../../layouts/profile-view/ProfileViewLinkedIn')
Línea 9... Línea 7...
9
)
7
)
10
 
8