|
Ultima modificación |
Ver Log
|
| Rev |
Autor |
Línea Nro. |
Línea |
| 5285 |
stevensc |
1 |
import React from 'react'
|
|
|
2 |
import GroupsInfo from './GroupsInfo'
|
|
|
3 |
|
|
|
4 |
const Groups = () => {
|
|
|
5 |
return (
|
|
|
6 |
<div className='sidebar__bottom'>
|
|
|
7 |
<GroupsInfo url="/helpers/my-groups" title={LABELS.MY_GROUPS} display={true} />
|
|
|
8 |
<GroupsInfo url="/helpers/groups-suggestion" title={LABELS.SUGGEST_GROUPS} />
|
|
|
9 |
</div>
|
|
|
10 |
)
|
|
|
11 |
}
|
|
|
12 |
|
|
|
13 |
export default Groups
|