mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-08-28 05:25:33 +00:00
10 lines
227 B
TypeScript
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} />
|
|
));
|