import './styles.scss' import Document from '@tiptap/extension-document' import Paragraph from '@tiptap/extension-paragraph' import Text from '@tiptap/extension-text' import { EditorContent, useEditor } from '@tiptap/react' import React from 'react' import { CustomExtension } from './CustomExtension.ts' export default () => { const editor = useEditor({ extensions: [ Document, Paragraph, Text, CustomExtension, ], content: `

This is a radically reduced version of Tiptap. It has support for a document, with paragraphs and text. That’s it. It’s probably too much for real minimalists though.

The paragraph extension is not really required, but you need at least one node. Sure, that node can be something different.

`, }) return ( <>
Reactive storage: {editor?.storage.custom.foo}
) }