Skip to content

Commit

Permalink
✨feat: 지원 상태 상세 조회와 목록 페이지 연결하기 #41
Browse files Browse the repository at this point in the history
  • Loading branch information
naarang committed Oct 25, 2024
1 parent 91bb79a commit 59a4992
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions src/components/Application/ApplicationCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,13 @@ const ApplicationCard = ({ applicationData }: ApplicationCardType) => {
</p>
<div className="w-[0.375rem] h-[0.375rem] rounded-full bg-[#FF6F61]"></div>
</div>
<RightArrowIcon />
<RightArrowIcon
onClick={() =>
navigate(
`/application/${applicationData.user_owner_job_posting_id}`,
)
}
/>
</div>
<div className="flex flex-col gap-[1.25rem] w-full px-[1.5rem] pt-[1.5rem] pb-[1rem]">
<div className="flex gap-[0.75rem]">
Expand Down Expand Up @@ -78,7 +84,14 @@ const ApplicationCard = ({ applicationData }: ApplicationCardType) => {
>
Read More Posting
</button>
<button className="flex-1 py-[0.75rem] caption-1-sb text-[#1E1926] bg-[#FEF387] text-center">
<button
className="flex-1 py-[0.75rem] caption-1-sb text-[#1E1926] bg-[#FEF387] text-center"
onClick={() =>
navigate(
`/application/${applicationData.user_owner_job_posting_id}`,
)
}
>
Check Application Status
</button>
</div>
Expand Down

0 comments on commit 59a4992

Please sign in to comment.