* Docs: Added Shadcn sidebar; added algorithm to automatically infer parents without needing to specify it. * Extracted Markdoc compilation in a separate file * Site Navigation: simplify nav by removing the border * Docs Navigation: added TOC; improved layout on mobile
4 lines
117 B
TypeScript
4 lines
117 B
TypeScript
export function KeystaticContentRenderer(props: { content: unknown }) {
|
|
return props.content as React.ReactNode;
|
|
}
|