| 9 | import { generateReportImage } from "../components/report/imageGenerator"; |
| 10 | |
| 11 | interface Preset { |
| 12 | name: string; |
| 13 | description: string; |
| 14 | } |
| 15 | |
| 16 | const Report = () => { |
| 17 | const [report, setReport] = useState<string | null>(null); |
nothing calls this directly
no outgoing calls
no test coverage detected