-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat : seminar detail pdf 레이아웃 작성 #19
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions
24
src/components/seminar/seminarDetail/pdf/SeminarDetailPdf.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import React from 'react'; | ||
import PinImg from '@/svg/seminar/pin.svg'; | ||
|
||
/** | ||
* @description | ||
* 세미나 상세 페이지 pdf 다운로드 컴포넌트 | ||
* @component SeminarDetailPdf | ||
* @returns {JSX.Element} SeminarDetailPdf | ||
* @since 2024.04.18 | ||
*/ | ||
/** | ||
* Renders the header component for the recruitment section. | ||
* @returns The rendered header component. | ||
*/ | ||
const SeminarDetailPdf = () => { | ||
|
||
return ( | ||
<div className="w-full flex mt-20 gap-4 pl-4 py-5 bg-zinc-900 rounded-lg"> | ||
<PinImg /> | ||
<p>세미나 자료 보기</p> | ||
</div> | ||
); | ||
}; | ||
export default SeminarDetailPdf; |