Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6830 | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |

import React from 'react'
import { useSelector } from 'react-redux'
import GroupsInfo from './GroupsInfo'

const Groups = () => {
  const labels = useSelector(({ intl }) => intl.labels)

  return (
    <div className="sidebar__bottom">
      <GroupsInfo
        url="/helpers/my-groups"
        title={labels.my_groups}
        display={true}
      />
      <GroupsInfo
        url="/helpers/groups-suggestion"
        title={labels.suggest_groups}
      />
    </div>
  )
}

export default Groups