Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 487 Bytes

README.md

File metadata and controls

35 lines (24 loc) · 487 Bytes

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