tiptap/packages/tiptap-starter-kit/index.ts
Philipp Kühn 42853fc583 rename
2020-03-27 22:04:02 +01:00

13 lines
324 B
TypeScript

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