Package Exports
- react-simplemde-editor
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-simplemde-editor) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
React SimpleMDE Markdown Editor
React component wrapper for SimpleMDE.
Install
npm install --save react-simplemde-editor
Demo
git clone https://github.com/benrlodge/react-simplemde-editor.git
cd react-simplemde-editor
npm install
cd demo
gulp
View demo at localhost:3000
Usage
View the demo code for a full example
var React = require('react');
var SimpleMDEReact = require('react-simplemde-editor');
<SimpleMDEReact
onChange={this.handleChange}
initialValue={this.state.textValue}
/>