Files
yaak/src-web/components/core/Editor/index.tsx
Gregory Schier f81a3ae8e7 Move stuff around
2023-03-13 23:30:14 -07: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);