| 4 | import { Mdx } from "./mdx-components"; |
| 5 | |
| 6 | interface FrameworkDocsProps extends React.HTMLAttributes<HTMLDivElement> { |
| 7 | data: string; |
| 8 | } |
| 9 | |
| 10 | export async function FrameworkDocs({ ...props }: FrameworkDocsProps) { |
| 11 | const frameworkDoc = allDocs.find((doc) => doc.slug === `/docs/installation/${props.data}`); |
nothing calls this directly
no outgoing calls
no test coverage detected