| 9 | import { Card, CardDescription, CardTitle } from "@repo/ui"; |
| 10 | |
| 11 | interface LinkCardProps extends Track { |
| 12 | problems: { |
| 13 | id: string; |
| 14 | title: string; |
| 15 | description: string; |
| 16 | notionDocId: string; |
| 17 | type: string; |
| 18 | }[]; |
| 19 | } |
| 20 | |
| 21 | const LinkCard = ({ track }: { track: LinkCardProps }) => { |
| 22 | function handleAddProblem() { |
nothing calls this directly
no outgoing calls
no test coverage detected