aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/components/plate-ui/code-line-element.tsx
blob: aa23472ca2320ddfc6f3e432b73a2644314c3deb (plain) (blame)
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} />
));