1.0.4 • Published 4 years ago

react-ckeditor-import v1.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

react-ckeditor-import

Component that integrates CKEditor with React js

Installation

npm install react-chkeditor-import

Example

class Example extends Component {
    constructor(props) {
        super(props);

        this.state = {
            content: null,
        }
    }

  
    onChange(event){
      this.setState({
        content: event.editor.getData()
      })
    }
    
    render() {
        return (
            <CKEditor 
              content={this.state.content} 
              events={{
                "change": this.onChange
              }}
             className="my-editor"   
             />
        )
    }
}
1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago