mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-19 13:47:51 +08:00
13 lines
324 B
TypeScript
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(),
|
|
]
|
|
} |