| 25 | import { motion } from "framer-motion"; |
| 26 | |
| 27 | export interface TrackPros extends Track { |
| 28 | problems: Problem[]; |
| 29 | categories: { |
| 30 | category: { |
| 31 | id: string; |
| 32 | category: string; |
| 33 | }; |
| 34 | }[]; |
| 35 | } |
| 36 | |
| 37 | interface TracksWithCategoriesProps { |
| 38 | tracks: TrackPros[]; |
nothing calls this directly
no outgoing calls
no test coverage detected