@blocks/editor
v0.0.28
Published
WYSIWYG MDX editor
Downloads
175
Readme
@blocks/editor
WYSIWYG editor for the Blocks ecosystem.
Installation
yarn add @blocks/editor
Usage
import React from 'react'
import { Editor } from '@blocks/editor'
export default () => (
<Editor
initialValue={'# Hello, world!'}
onChange={value => console.log(value)}
/>
)