| 8 | import { Textarea } from "@/components/ui/textarea" |
| 9 | |
| 10 | interface CommentFormProps { |
| 11 | extensionId: Id<"extensions"> |
| 12 | parentId?: Id<"comments"> |
| 13 | onSuccess?: () => void |
| 14 | onCancel?: () => void |
| 15 | placeholder?: string |
| 16 | autoFocus?: boolean |
| 17 | } |
| 18 | |
| 19 | export function CommentForm({ |
| 20 | extensionId, |
nothing calls this directly
no outgoing calls
no test coverage detected