({
children: rawCode,
className: rawLang,
}: {
children: string
className: string
})
| 76 | * @example view any pair of ``` or ` in `src/app/docs/` |
| 77 | */ |
| 78 | export function RawCode({ |
| 79 | children: rawCode, |
| 80 | className: rawLang, |
| 81 | }: { |
| 82 | children: string |
| 83 | className: string |
| 84 | }) { |
| 85 | return <Code code={rawCode} language={rawLang} /> |
| 86 | } |
nothing calls this directly
no outgoing calls
no test coverage detected