* chore: add precommit hook for eslint fixes, fix linting issues * chore: add eslint import sort plugin
9 lines
293 B
TypeScript
9 lines
293 B
TypeScript
import { Editor as CoreEditor } from '@tiptap/core'
|
|
import React from 'react'
|
|
|
|
import { EditorContentProps, EditorContentState } from './EditorContent'
|
|
|
|
export class Editor extends CoreEditor {
|
|
public contentComponent: React.Component<EditorContentProps, EditorContentState> | null = null
|
|
}
|