Files
yaak-mountain-loop/src-web/components/Editor/index.tsx
2023-03-10 10:39:23 -08:00

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);