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

Interface CompleteTrack

apps/web/components/admin/CompleteAddTracks.tsx:8–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6import EditCategories from "./EditCategories";
7
8export interface CompleteTrack {
9 trackId: string;
10 trackTitle: string;
11 trackDescription: string;
12 trackImage: string;
13 selectedCategory: string[];
14 cohort: string;
15}
16
17const CompleteAddTracks = ({ categories }: { categories: Categories[] }) => {
18 const [notionId, setNotionId] = useState("");

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected