Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

@blocks/editor

WYSIWYG editor for the Blocks ecosystem.

Read the full docs

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)}
  />
)