| 26 | const COLOR_MODE_STORAGE_KEY = 'blocks-code-preview-color-mode'; |
| 27 | |
| 28 | interface SingleFileCodeViewProps { |
| 29 | code: string; |
| 30 | language?: SupportedLanguages; |
| 31 | fileName?: string; |
| 32 | } |
| 33 | |
| 34 | export function SingleFileCodeView({ |
| 35 | code, |
nothing calls this directly
no outgoing calls
no test coverage detected