| 180 | } |
| 181 | |
| 182 | interface CodeProps { |
| 183 | children: string; |
| 184 | lang?: string; |
| 185 | } |
| 186 | |
| 187 | export async function Code({ children, lang = "typescript" }: CodeProps) { |
| 188 | if (lang === "diff") { |
nothing calls this directly
no outgoing calls
no test coverage detected