tiptap/packages/react/src/Editor.ts
Philipp Kühn e765c8e981 refactoring
2021-03-15 09:00:44 +01:00

8 lines
292 B
TypeScript

import React from 'react'
import { Editor as CoreEditor } from '@tiptap/core'
import { EditorContentProps, EditorContentState } from './EditorContent'
export class Editor extends CoreEditor {
public contentComponent: React.Component<EditorContentProps, EditorContentState> | null = null
}