Rev 6734 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
import React from 'react'
import { useSelector } from 'react-redux'
import withSearch from '../../HOC/withSearch'
import TitleSection from '../../components/UI/TitleSection'
import ProfileItemList from '../../components/profile-item/ProfileItemList'
const PeopleViewedMyProfilePage = () => {
const labels = useSelector(({ intl }) => intl.labels)
const WithSearchConnections = withSearch(
ProfileItemList,
'profile/people-viewed-profile'
)
return (
<main className="companies-info container">
<TitleSection title={labels.who_has_seen_my_profile} />
<WithSearchConnections />
</main>
)
}
export default PeopleViewedMyProfilePage