Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6725 | Rev 6734 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
6725 stevensc 1
import React from 'react'
2
import { useSelector } from 'react-redux'
3
 
4
import withSearch from '../../HOC/withSearch'
5
import TitleSection from '../../components/UI/TitleSection'
6
import ProfileItemList from '../../components/profile-item/ProfileItemList'
7
 
8
const PeopleBlockedPage = () => {
9
  const labels = useSelector(({ intl }) => intl.labels)
10
 
11
  const WithSearchConnections = withSearch(
12
    ProfileItemList,
13
    'connection/people-blocked'
14
  )
15
 
16
  return (
17
    <main className="companies-info container">
6727 stevensc 18
      <TitleSection title={labels.people_blocked} />
6725 stevensc 19
      <WithSearchConnections />
20
    </main>
21
  )
22
}
23
 
24
export default PeopleBlockedPage