CommentForm

Domain

Name, email, and content comment form with inline validation. Providing parentId switches it to reply mode; onCancel shows a Cancel button.

New comment

Preview
Code
<CommentForm postId={post.postId} onSubmit={handleSubmit} />

Reply mode

Preview

Replying to comment

Code
<CommentForm postId={post.postId} parentId={comment.commentId} onSubmit={handleSubmit} onCancel={handleCancel} />
Sourcemodules/domains/blog/comment/CommentForm.tsx