Skip to content

Commit

Permalink
(#72) ✨ style: 루키 채팅 셋 컴포넌트에 주석 설명 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
inaemon committed Nov 27, 2024
1 parent 2a9ba51 commit 4a6ae6f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/Chatbot/components/RookieChat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,16 @@ const RookieChat = ({initialMessage, initialPreformattedMessage, contentList}: R
{/* 챗봇 이름 */}
<p className="text-[14px] font-medium text-black">챗봇 {questionCategories.chatbotName}</p>

{/* 첫 번째 말풍선 */}
{/* 첫 번째는 꼬랑지 말풍선, 내용물이 string[]인 case */}
{initialMessage && (
<RookieMessageWithTail messageList={initialMessage}/>
)}
{/* 첫 번째는 꼬랑지 말풍선, 내용물이 string+'\n'인 case */}
{initialPreformattedMessage && (
<RookiePreformattedMessageWithTail message={initialPreformattedMessage} />
)}

{/* 두 번째 이상 메세지는 일반 말풍선 */}
{/* 이미지와 텍스트 리스트 */}
{contentList &&
// 이미지인 경우: 이미지 CSS 조정해서 반환
Expand Down

0 comments on commit 4a6ae6f

Please sign in to comment.