Guest User

Untitled

a guest
May 28th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. import Editor from 'react-md-editor';
  2.  
  3. state = {
  4. code: '# React Markdown '
  5.  
  6. }
  7.  
  8. updateCode = (newCode) => {
  9. this.setState({
  10. code: newCode
  11. });
  12. }
  13.  
  14. Render:
  15.  
  16. <Editor value={this.state.code} onChange={this.updateCode} />
Add Comment
Please, Sign In to add comment