Getting Started
install package
npm install @hexx/editor# oryarn add @hexx/editor
Example
import { Editor } from '@hexx/editor';import { PresetEditableScope, // default block mapping // preset PlusButton, TuneButton, InlineTool, // additional inline tool InlineCode, InlineMarker, InlineLink,} from '@hexx/editor/components';
<Editor scope={PresetEditableScope}> <PlusButton /> <TuneButton /> <InlineTool> <InlineMarker /> <InlineCode /> <InlineLink /> </InlineTool></Editor>;