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

Interface Problem

apps/web/components/admin/AddProblemCard.tsx:21–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19import { createProblem } from "../utils";
20
21interface Problem {
22 id: string;
23 title: string;
24 description: string;
25 type: string;
26 notionDocId: string;
27}
28
29const AddProblemCard = () => {
30 const [newProblems, setNewProblems] = useState<Problem[]>([]);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected