supermemory/apps/web/app/components/plate-ui/code-line-element.tsx
2025-01-20 17:50:45 -07:00

10 lines
227 B
TypeScript

'use client';
import { withRef } from '@udecode/cn';
import { PlateElement } from './plate-element';
export const CodeLineElement = withRef<typeof PlateElement>((props, ref) => (
<PlateElement ref={ref} {...props} />
));