mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-25 05:35:48 +00:00
23 lines
491 B
TypeScript
23 lines
491 B
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import { allDocs } from "contentlayer/generated"
|
|
|
|
import { Mdx } from "./mdx-components"
|
|
|
|
interface FrameworkDocsProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
data: string
|
|
}
|
|
|
|
export function FrameworkDocs({ ...props }: FrameworkDocsProps) {
|
|
const frameworkDoc = allDocs.find(
|
|
(doc) => doc.slug === `/docs/installation/${props.data}`
|
|
)
|
|
|
|
if (!frameworkDoc) {
|
|
return null
|
|
}
|
|
|
|
return <Mdx code={frameworkDoc.body.code} />
|
|
}
|