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