| 18 | import { Icons } from "@/components/icons" |
| 19 | |
| 20 | interface EditorProps { |
| 21 | post: Pick<Post, "id" | "title" | "content" | "published"> |
| 22 | } |
| 23 | |
| 24 | type FormData = z.infer<typeof postPatchSchema> |
| 25 |
nothing calls this directly
no outgoing calls
no test coverage detected