Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6727 | 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 AppliedJobsPage = () => {
  const labels = useSelector(({ intl }) => intl.labels)

  const WithSearchConnections = withSearch(ProfileItemList, 'job/applied-jobs')

  return (
    <main className="companies-info container">
      <TitleSection title={labels.jobs_applied} />
      <WithSearchConnections />
    </main>
  )
}

export default AppliedJobsPage