mehulcse / material-ui-editor

Material ui editor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Material UI Editor

JavaScript Style Guide

Example

Example

Installation

npm install material-ui-editor

Usage

import Editor from 'material-ui-editor'

// ...

render() {
  return (
    <div>
      //...
      <Editor content={"<h1>Lorem Ipsum</h1>"}
              onChange={(content)=>{}}/>
    </div>
  )
}

Material UI Image Properties

Name Type Default Description
content string '' HTML or a text string as an input
onChange* func onChange handler of the Editor.
editorStyle object { minHeight: 300, maxHeight: 350, overflowY: 'scroll', outline: 'none' } Override the editorStyle style.

* required property

License

The files included in this repository are licensed under the MIT license.

About

Material ui editor

License:MIT License


Languages

Language:JavaScript 100.0%