mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-02-25 09:04:57 +01:00
7 lines
190 B
TypeScript
7 lines
190 B
TypeScript
import { memo } from 'react';
|
|
import { _Editor } from './Editor';
|
|
import type { _EditorProps } from './Editor';
|
|
|
|
export type EditorProps = _EditorProps;
|
|
export const Editor = memo(_Editor);
|