| 10 | import { Trash2 } from 'lucide-react'; |
| 11 | import { Button } from '@/components/ui/button'; |
| 12 | interface IVoteFormProps { |
| 13 | questionId: number | undefined; |
| 14 | answerId: number | undefined; |
| 15 | } |
| 16 | type DeleteActionData = { questionId?: number; answerId?: number }; |
| 17 | type DeleteAction = ( |
| 18 | data: DeleteActionData, |
nothing calls this directly
no outgoing calls
no test coverage detected