Skip to content

Commit

Permalink
Feat: 채팅 UI 기본 완성 #93
Browse files Browse the repository at this point in the history
  • Loading branch information
rmdnps10 committed Jan 26, 2024
1 parent a90f49f commit 9e3a856
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/components/Seller/SellerChat/ChatBottomSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ function ChatBottomSection() {
const [isPostStart, setIsPostStart] = useState(true);
// 상담이 시작되었는지 (셰어가 시작 요청을 확인했는지)
const [isStart, setIsStart] = useState(false);
// 상담이 종료 요청했는지 여부
const [isEnd, setIsEnd] = useState(false);
const [text, setText] = useState('');

return (
Expand Down Expand Up @@ -113,6 +115,8 @@ const MessageSection = styled.div`

const SendIconSVG = styled(SendIcon)`
cursor: pointer;
align-self: flex-end;
padding-bottom: 0.7rem;
`;

const MessageTextArea = styled(TextareaAutosize)`
Expand Down

0 comments on commit 9e3a856

Please sign in to comment.