| 13 | type SortOption = "newest" | "oldest" | "popular" |
| 14 | |
| 15 | interface CommentSectionProps { |
| 16 | extensionId: Id<"extensions"> |
| 17 | } |
| 18 | |
| 19 | export function CommentSection({ extensionId }: CommentSectionProps) { |
| 20 | const [sortBy, setSortBy] = useState<SortOption>("newest") |
nothing calls this directly
no outgoing calls
no test coverage detected