| 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 AppliedJobsPage = () => {
|
|
|
9 |
const labels = useSelector(({ intl }) => intl.labels)
|
|
|
10 |
|
|
|
11 |
const WithSearchConnections = withSearch(ProfileItemList, 'job/applied-jobs')
|
|
|
12 |
|
|
|
13 |
return (
|
|
|
14 |
<main className="companies-info container">
|
|
|
15 |
<TitleSection title={labels.first_level_persons} />
|
|
|
16 |
<WithSearchConnections />
|
|
|
17 |
</main>
|
|
|
18 |
)
|
|
|
19 |
}
|
|
|
20 |
|
|
|
21 |
export default AppliedJobsPage
|