/* eslint-disable react/no-unknown-property */ import Details from '@theme/MDXComponents/Details' export default function Collapse(props: { children: React.ReactNode; title?: string }) { const { children, title = 'Collapse' } = props return (
{title} {children}
) }