Línea 1... |
Línea 1... |
1 |
/* eslint-disable react/prop-types */
|
1 |
/* eslint-disable react/prop-types */
|
2 |
import React, { useEffect, useState, useRef } from 'react'
|
2 |
import React, { useEffect, useState, useRef } from 'react'
|
3 |
import SuggestedGroupsHelper from '../../../../shared/helpers/suggested-groups-helper/SuggestedGroupsHelper'
|
- |
|
4 |
import SocialNetworks from '../../../../dashboard/components/home-section/SocialNetworks'
|
3 |
import SocialNetworks from '../../../../dashboard/components/home-section/SocialNetworks'
|
5 |
import ProfileInfo from '../../../../dashboard/components/home-section/ProfileInfo'
|
4 |
import ProfileInfo from '../../../../dashboard/components/home-section/ProfileInfo'
|
6 |
import SuggestWidget from '../../../../shared/helpers/my-groups-helper/SuggestWidget'
|
5 |
import SuggestWidget from '../../../../shared/helpers/my-groups-helper/SuggestWidget'
|
Línea 7... |
Línea 6... |
7 |
|
6 |
|
Línea 36... |
Línea 35... |
36 |
className={`responsiveNavbar ${shouldRender ? 'slideIn' : 'slideOut'} p-0`}
|
35 |
className={`responsiveNavbar ${shouldRender ? 'slideIn' : 'slideOut'} p-0`}
|
37 |
onAnimationEnd={handleUnmount}
|
36 |
onAnimationEnd={handleUnmount}
|
38 |
ref={responsiveNavbar}
|
37 |
ref={responsiveNavbar}
|
39 |
>
|
38 |
>
|
40 |
<ProfileInfo {...navbarVars}/>
|
39 |
<ProfileInfo {...navbarVars}/>
|
41 |
<SuggestWidget />
|
40 |
<SuggestWidget title='Mis Grupos:' url='/helpers/my-groups' />
|
42 |
<SuggestedGroupsHelper suggestedClassname='d-block' />
|
41 |
<SuggestWidget title='Grupos:' url='/helpers/groups-suggestion' />
|
43 |
<SocialNetworks />
|
42 |
<SocialNetworks />
|
44 |
</nav>
|
43 |
</nav>
|
45 |
)
|
44 |
)
|
46 |
}
|
45 |
}
|