| 10 | import { CommentForm } from "./comment-form" |
| 11 | |
| 12 | interface CommentData { |
| 13 | _id: Id<"comments"> |
| 14 | content: string |
| 15 | author: { |
| 16 | userId: string |
| 17 | name: string |
| 18 | } |
| 19 | isDeleted?: boolean |
| 20 | createdAt: number |
| 21 | likeCount: number |
| 22 | replies?: CommentData[] |
| 23 | } |
| 24 | |
| 25 | interface CommentCardProps { |
| 26 | comment: CommentData |
nothing calls this directly
no outgoing calls
no test coverage detected