Rev 6736 | 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 PeopleYouMayKnowPage = () => {const labels = useSelector(({ intl }) => intl.labels)const WithSearchConnections = withSearch(ProfileItemList,'connection/people-you-may-know')return (<main className="companies-info container"><TitleSection title={labels.people_you_may_know} /><WithSearchConnections /></main>)}export default PeopleYouMayKnowPage