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 MyConnectionsPage = () => {
const labels = useSelector(({ intl }) => intl.labels)
const WithSearchConnections = withSearch(
ProfileItemList,
'connection/my-connections'
)
return (
<main className="companies-info container">
<TitleSection title={labels.first_level_persons} />
<WithSearchConnections />
</main>
)
}
export default MyConnectionsPage