/**
* Nextra compatibility shim for `nextra/components`.
* Provides minimal component stubs so existing pages/ components
* can resolve their imports during the migration to Fumadocs.
*
* Nextra's components use compound patterns (e.g., Cards.Card, Tabs.Tab,
* FileTree.File) which are replicated here using Object.assign.
*/
import type { ReactNode } from 'react'
interface ChildrenProps {
children?: ReactNode
[key: string]: any
}
export function Steps({ children }: ChildrenProps) {
return
{children}
}
function TabComponent({ children }: ChildrenProps) {
return
{children}
}
function TabsBase({ children }: ChildrenProps) {
return