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

Interface LinkProblemsProps

apps/web/components/admin/LinkProblems.tsx:10–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected