Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6830 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6830 Rev 6832
Línea 1... Línea 1...
1
import React from 'react'
1
import React from 'react'
-
 
2
import { useSelector } from 'react-redux'
2
import GroupsInfo from './GroupsInfo'
3
import GroupsInfo from './GroupsInfo'
Línea 3... Línea 4...
3
 
4
 
-
 
5
const Groups = () => {
-
 
6
  const labels = useSelector(({ intl }) => intl.labels)
4
const Groups = () => {
7
 
5
  return (
8
  return (
-
 
9
    <div className="sidebar__bottom">
6
    <div className='sidebar__bottom'>
10
      <GroupsInfo
-
 
11
        url="/helpers/my-groups"
-
 
12
        title={labels.my_groups}
-
 
13
        display={true}
-
 
14
      />
7
      <GroupsInfo url="/helpers/my-groups" title={LABELS.MY_GROUPS} display={true} />
15
      <GroupsInfo
-
 
16
        url="/helpers/groups-suggestion"
-
 
17
        title={labels.suggest_groups}
8
      <GroupsInfo url="/helpers/groups-suggestion" title={LABELS.SUGGEST_GROUPS} />
18
      />
9
    </div>
19
    </div>
10
  )
20
  )
Línea 11... Línea 21...
11
}
21
}