import { ContentKitBox } from '@gitbook/api'; import { ContentKitServerElementProps } from './types'; export function ElementBox( props: React.PropsWithChildren>, ) { const { element, children } = props; return
{children}
; }