Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

댓글/답글 촉진을 위한 플레이스 홀더 문구 변경 #132

Merged
merged 1 commit into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/pages/comment/CommentInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const CommentInput: React.FC<CommentInputProps> = ({
return (
<form onSubmit={handleAddComment} className='flex w-full items-center space-x-4'>
<textarea
placeholder={placeholder || '댓글을 입력하세요...'}
placeholder={placeholder || '재밌게 읽었다면 댓글로 글값을 남겨볼까요?'}
value={newComment}
onChange={(e) => setNewComment(e.target.value)}
className='flex-1 resize-none rounded border p-2 text-lg'
Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/reply/ReplyInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const ReplyInput: React.FC<ReplyInputProps> = ({ placeholder, initialValue = '',
return (
<form onSubmit={handleAddReply} className='flex w-full items-center space-x-4'>
<textarea
placeholder={placeholder || '답글을 입력하세요...'}
placeholder={placeholder || '댓글을 달아줬다면 답을 해주는 게 인지상정!'}
value={newReply}
onChange={(e) => setNewReply(e.target.value)}
className='flex-1 resize-none rounded border p-2 text-base'
Expand Down
Loading