/**
* MDX components provider for the Nextra compatibility layer.
* This module is used as the `providerImportSource` for @mdx-js/loader
* to automatically provide components that Nextra used to inject
* via theme.config.tsx's `components` property.
*/
import type { ReactNode, ComponentType } from 'react'
interface ChildrenProps {
children?: ReactNode
[key: string]: any
}
function Callout({ children, type = 'info', ...props }: ChildrenProps & { type?: string }) {
return (
{children}
)
}
function Steps({ children }: ChildrenProps) {
return
{children}
}
function Tab({ children }: ChildrenProps) {
return
{children}
}
function TabsComponent({ children }: ChildrenProps) {
return