| 8 | import LinkCard from "./LinkCard"; |
| 9 | |
| 10 | interface LinkProblemsProps extends Track { |
| 11 | problems: { |
| 12 | id: string; |
| 13 | title: string; |
| 14 | description: string; |
| 15 | notionDocId: string; |
| 16 | type: string; |
| 17 | }[]; |
| 18 | } |
| 19 | |
| 20 | export const LinkProblems = ({ tracks }: { tracks: LinkProblemsProps[] }) => { |
| 21 | const [search, setSearch] = useState(""); |
nothing calls this directly
no outgoing calls
no test coverage detected