1.0.0 • Published 3 years ago

react-classic-editor v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

NPM npm

react classic editor

React-Classic-Editor adds a rudimentary text editor to your project.

Installation

$ npm install --save react-classic-editor
$ yarn add react-classic-editor

Example

  import React from 'react';

  import { Editor } from 'react-classic-editor';
  
  function App(){
    var options = {
      placeholder="Type something"
    }

    return (
      <Editor {...options} />
    );
  }

This code will add a text editor to your web page.

Options

Namedefault
bordertrue
showCountfalse
spellChecktrue
toolbartrue
autoFocustrue

License

Licensed under MIT