Skip to content

Commit 6208de2

Browse files
committed
Refactor: Comment 컴포넌트 누락된 type 키워드 추가
1 parent bd52423 commit 6208de2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/components/CommentBottomSheet/Comment

src/components/CommentBottomSheet/Comment/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { StyledText } from '@components/Text/StyledText';
22
import { CommentLayout, SendContainer, CommentTextarea, SendButton } from './styles';
33
import send from '@assets/default/send-comment.svg';
44
import React, { useEffect, useRef, useState } from 'react';
5-
import { CommentProps } from './dto';
5+
import type { CommentProps } from './dto';
66

77
const Comment: React.FC<CommentProps> = ({ content, sendComment, isModal = false }) => {
88
const [comment, setComment] = useState('');

0 commit comments

Comments
 (0)