'use client'; import React from 'react'; import { cn, withRef } from '@udecode/cn'; import { PlateLeaf } from '@udecode/plate-common/react'; export const CodeLeaf = withRef( ({ children, className, ...props }, ref) => { return ( {children} ); } );