1 2 3 4 5 6 7 8 9 10
'use client'; import { withRef } from '@udecode/cn'; import { PlateElement } from './plate-element'; export const CodeLineElement = withRef<typeof PlateElement>((props, ref) => ( <PlateElement ref={ref} {...props} /> ));