import { ContentKitCodeBlock } from '@gitbook/api'; import { ContentKitClientElementProps } from './types'; export function ElementCodeBlockClient( props: ContentKitClientElementProps & { /** * Render a code block on the server as a fallback and swap only when needed. */ children: React.ReactNode; }, ) { const { element, children } = props; return <>{children}; } export function DefaultCodeBlock(props: { code: string; syntax: string; lineNumbers: number | boolean; }) { return (
            {props.code}
        
); }