mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-01-21 00:13:58 +08:00
8 lines
292 B
TypeScript
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
|
|
}
|