| Línea 12... |
Línea 12... |
| 12 |
import AppGrid from '@components/UI/layout/AppGrid'
|
12 |
import AppGrid from '@components/UI/layout/AppGrid'
|
| 13 |
import Spinner from '@components/UI/Spinner'
|
13 |
import Spinner from '@components/UI/Spinner'
|
| 14 |
import Pagination from '@components/common/Pagination'
|
14 |
import Pagination from '@components/common/Pagination'
|
| 15 |
import GroupWidget from '@components/widgets/linkedin/group-widget'
|
15 |
import GroupWidget from '@components/widgets/linkedin/group-widget'
|
| 16 |
import FeedList from '@components/dashboard/linkedin/feed-list/FeedList'
|
16 |
import FeedList from '@components/dashboard/linkedin/feed-list/FeedList'
|
| 17 |
import CompanyFollowers from '@components/company/CompanyFollowers'
|
17 |
import CompanyFollowers from '@components/company/company-followers'
|
| 18 |
import CompanyWidget from '@components/company/company-widget'
|
18 |
import CompanyWidget from '@components/company/company-widget'
|
| 19 |
import AboutCompany from '@components/company/about-company'
|
19 |
import AboutCompany from '@components/company/about-company'
|
| Línea 20... |
Línea 20... |
| 20 |
|
20 |
|
| 21 |
export default function LinkedInCompany() {
|
21 |
export default function LinkedInCompany() {
|
| Línea 51... |
Línea 51... |
| 51 |
<AppGrid
|
51 |
<AppGrid
|
| 52 |
renderSidebar={() => <GroupWidget group={data} />}
|
52 |
renderSidebar={() => <GroupWidget group={data} />}
|
| 53 |
renderMain={() => (
|
53 |
renderMain={() => (
|
| 54 |
<>
|
54 |
<>
|
| 55 |
<CompanyWidget company={data} refetch={refetch} />
|
55 |
<CompanyWidget company={data} refetch={refetch} />
|
| - |
|
56 |
{loading && <Spinner />}
|
| 56 |
{!isFollower && <AboutCompany company={data} />}
|
57 |
{!isFollower && <AboutCompany company={data} />}
|
| 57 |
{isFollower && !loading && (
|
58 |
{isFollower && !loading && (
|
| 58 |
<>
|
59 |
<>
|
| 59 |
<FeedList feeds={allFeeds} />
|
60 |
<FeedList feeds={allFeeds} />
|
| 60 |
<Pagination
|
61 |
<Pagination
|