import * as React from 'react'; import { type SlateElementProps, type SlateLeafProps, type TCodeBlockElement, SlateElement, SlateLeaf, } from 'platejs'; export function CodeBlockElementStatic( props: SlateElementProps ) { return (
          {props.children}
        
); } export function CodeLineElementStatic(props: SlateElementProps) { return ; } export function CodeSyntaxLeafStatic(props: SlateLeafProps) { const tokenClassName = props.leaf.className as string; return ; }