| 1 | import type { JSX } from "preact"; |
| 2 | |
| 3 | interface CodeWindowProps extends JSX.HTMLAttributes<HTMLDivElement> { |
| 4 | name?: string; |
| 5 | } |
| 6 | |
| 7 | export function CodeWindow(props: CodeWindowProps) { |
| 8 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected