add starter kit

This commit is contained in:
Philipp Kühn
2020-03-06 12:18:20 +01:00
parent 3f442a6592
commit 25d2e0540c
6 changed files with 90 additions and 21 deletions

View File

@@ -0,0 +1,13 @@
import Document from '@tiptap/document-extension'
import History from '@tiptap/history-extension'
import Paragraph from '@tiptap/paragraph-extension'
import Text from '@tiptap/text-extension'
export default function extensions() {
return [
new Document(),
new History(),
new Paragraph(),
new Text(),
]
}