| 6719 |
stevensc |
1 |
import React from 'react'
|
|
|
2 |
import { useSelector } from 'react-redux'
|
|
|
3 |
import TitleSection from '../../components/UI/TitleSection'
|
|
|
4 |
import ProfileItemList from '../../components/profile-item/ProfileItemList'
|
|
|
5 |
import withSearch from '../../HOC/withSearch'
|
|
|
6 |
|
|
|
7 |
const InvitationsSendPage = () => {
|
|
|
8 |
const labels = useSelector(({ intl }) => intl.labels)
|
|
|
9 |
|
|
|
10 |
const WithSearchConnections = withSearch(
|
|
|
11 |
ProfileItemList,
|
|
|
12 |
'connection/invitations-sent'
|
|
|
13 |
)
|
|
|
14 |
|
|
|
15 |
return (
|
|
|
16 |
<main className="companies-info container">
|
|
|
17 |
<TitleSection title={labels.invitations_sent} />
|
|
|
18 |
<WithSearchConnections />
|
|
|
19 |
</main>
|
|
|
20 |
)
|
|
|
21 |
}
|
|
|
22 |
|
|
|
23 |
export default InvitationsSendPage
|