|
Ultima modificación |
Ver Log
|
| Rev |
Autor |
Línea Nro. |
Línea |
| 6830 |
stevensc |
1 |
import React, { lazy } from 'react'
|
|
|
2 |
import { useSelector } from 'react-redux'
|
|
|
3 |
|
|
|
4 |
const LinkedIn = lazy(() => import('../../layouts/company/LinkedInCompany'))
|
|
|
5 |
|
|
|
6 |
const CompanyViewPage = () => {
|
|
|
7 |
const { theme_id } = useSelector(({ auth }) => auth)
|
|
|
8 |
|
|
|
9 |
switch (theme_id) {
|
|
|
10 |
default:
|
|
|
11 |
return <LinkedIn />
|
|
|
12 |
}
|
|
|
13 |
}
|
|
|
14 |
|
|
|
15 |
export default CompanyViewPage
|