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