Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6734 | Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
6727 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 PeopleViewedMyProfilePage = () => {
9
  const labels = useSelector(({ intl }) => intl.labels)
10
 
11
  const WithSearchConnections = withSearch(
12
    ProfileItemList,
13
    'profile/people-viewed-profile'
14
  )
15
 
16
  return (
17
    <main className="companies-info container">
18
      <TitleSection title={labels.who_has_seen_my_profile} />
19
      <WithSearchConnections />
20
    </main>
21
  )
22
}
23
 
24
export default PeopleViewedMyProfilePage