import './styles.scss' import { EditorContent, useEditor } from '@tiptap/react' import StarterKit from '@tiptap/starter-kit' import React from 'react' import { Paragraph } from './Paragraph.jsx' export default () => { const editor = useEditor({ extensions: [ StarterKit.configure({ paragraph: false, }), Paragraph, ], content: `

Each line shows the number of characters in the paragraph.

`, }) return ( ) }