'use client'; import * as React from 'react'; import type { PlateLeafProps } from 'platejs/react'; import { PlateLeaf } from 'platejs/react'; export function CodeLeaf(props: PlateLeafProps) { return ( {props.children} ); }