| 1 | import { createContext, useContext, useMemo, type ReactNode } from "react"; |
| 2 | import type { useFileManager } from "../hooks/useFileManager"; |
| 3 | |
| 4 | type FileManagerValue = ReturnType<typeof useFileManager>; |
nothing calls this directly
no test coverage detected