| 2 | import { LANGUAGES, type Language } from "@/lib/code-samples"; |
| 3 | |
| 4 | interface CodeInputProps { |
| 5 | code: string; |
| 6 | onChange: (code: string) => void; |
| 7 | language: string; |
| 8 | onLanguageChange: (lang: Language) => void; |
| 9 | } |
| 10 | |
| 11 | export function CodeInput({ |
| 12 | code, |
nothing calls this directly
no outgoing calls
no test coverage detected