1.0.2 • Published 5 years ago

react-native-ckeditor v1.0.2

Weekly downloads
26
License
ISC
Repository
github
Last release
5 years ago

react-native-ckeditor

React Native CKEditor component with no native code for React Native apps built using WebView

Installation

yarn add react-native-ckeditor

or

npm install --save react-native-ckeditor

and then

import CKEditor from 'react-native-ckeditor';

Usage

Creating a CKEditor.js editor:

<CKEditor
  content={values.description}
  onChange={value => {
    setFieldValue('description', value);
  }}
/>