| 9 | import { usePathname } from 'next/navigation'; |
| 10 | |
| 11 | interface CommentVoteFormProps { |
| 12 | upVotes: number; |
| 13 | downVotes: number; |
| 14 | commentId: number; |
| 15 | voteType: VoteType | null; |
| 16 | } |
| 17 | |
| 18 | const CommentVoteForm: React.FC<CommentVoteFormProps> = ({ |
| 19 | upVotes, |
nothing calls this directly
no outgoing calls
no test coverage detected