Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6727 | Rev 6734 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
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">
6731 stevensc 15
      <TitleSection title={labels.jobs_applied} />
6727 stevensc 16
      <WithSearchConnections />
17
    </main>
18
  )
19
}
20
 
21
export default AppliedJobsPage