MCPcopy Create free account
hub / github.com/SyntaxUI/syntaxui / RawCode

Function RawCode

src/components/code/Code.tsx:78–86  ·  view source on GitHub ↗
({
  children: rawCode,
  className: rawLang,
}: {
  children: string
  className: string
})

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected