Skip to content

Commit

Permalink
feat: 공지사항 상세조회 reqct-quill 라이브러리 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
ssssksss committed Sep 24, 2024
1 parent 6408207 commit 838d506
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/support/SupportNoticeDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ const SupportNoticeDetail = ({ data }: ISupportNoticeDetail) => {
<hr className="my-4 border-t-2 border-gray-300" />

{/* 본문 내용 */}
<div className="text-lg text-gray-800">{data.content}</div>
<p
className="break-words py-4 font-medium text-black"
dangerouslySetInnerHTML={{ __html: data.content }}
/>
</div>
</div>
);
Expand Down

0 comments on commit 838d506

Please sign in to comment.