Skip to content

Commit

Permalink
Merge pull request #259 from markalbrand56/front_searchbar
Browse files Browse the repository at this point in the history
Front searchbar
  • Loading branch information
markalbrand56 authored Nov 18, 2023
2 parents 34d0021 + d618996 commit 91cf89c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
11 changes: 9 additions & 2 deletions uniEmpleos/src/pages/PrincipalStudent/PrincipalStudent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ import API_URL from "../../api"
import useApi from "../../Hooks/useApi"
import Loader from "../../components/Loader/Loader"
import { useTranslation } from "react-i18next"
import { Player } from '@lottiefiles/react-lottie-player'
import upload from './upload.json'

const schema = Joi.object({
token: Joi.string().required(),
Expand Down Expand Up @@ -106,7 +108,6 @@ const PrincipalStudent = () => {
}
}, [dataa.data, carrera, postulaciones])

console.log('-->', ofertasAMostrar)
return (
<div className={styles.container}>
<Header userperson="student" />
Expand All @@ -130,7 +131,13 @@ const PrincipalStudent = () => {
</div>
) : (
<div className={styles.containerinfomain}>
<h1>No hay postulaciones</h1>
<Player
src={upload}
className="player"
loop
autoplay
style={{ height: '400px', width: '400px' }}
/>
</div>
)}
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
justify-content: center;
gap: 20px;
margin-top: 20px;
align-items: center;
}

.container{
Expand Down
Loading

0 comments on commit 91cf89c

Please sign in to comment.