MCPcopy Create free account
hub / github.com/code100x/daily-code / TrackCardProps

Interface TrackCardProps

apps/web/components/TrackCard-2.tsx:8–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6import { useRouter } from "next/navigation";
7
8interface TrackCardProps extends Track {
9 problems: Problem[];
10 categories: {
11 category: {
12 id: string;
13 category: string;
14 };
15 }[];
16}
17
18export function TrackCard2({ track }: { track: TrackCardProps }) {
19 const router = useRouter();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected