MCPcopy Create free account
hub / github.com/CommandCodeAI/BaseAI / Content

Function Content

apps/baseai.dev/src/components/content.tsx:13–30  ·  view source on GitHub ↗
({
	content
}: {
	content?: MDXRemoteSerializeResult<
		Record<string, unknown>,
		Record<string, unknown>
	>;
})

Source from the content-addressed store, hash-verified

11);
12
13export default function Content({
14 content
15}: {
16 content?: MDXRemoteSerializeResult<
17 Record<string, unknown>,
18 Record<string, unknown>
19 >;
20}) {
21
22
23 return (
24 <Wrapper>
25 {content && (
26 <MDXRemote {...content} components={MarkdownComponents()} />
27 )}
28 </Wrapper>
29 );
30}

Callers

nothing calls this directly

Calls 1

MarkdownComponentsFunction · 0.90

Tested by

no test coverage detected