React 16 support
See original GitHub issueAs mentioned in React 15.5 release notes, React.createClass
(MDEditor.js#L13) and React.PropTypes
(MDEditor.js#L16-L19) are now deprecated.
Are there any plans for making further releases with such replacements to make editor support React 16?
Issue Analytics
- State:
- Created 6 years ago
- Reactions:3
- Comments:9
Top Results From Across the Web
Versions - React
The current docs are for React 18. For React 17, see https://17.reactjs.org. See our FAQ for information about our versioning policy and commitment...
Read more >React | endoflife.date
React is an open-source JavaScript web framework for building modern web applications. Release, Released, Active Support, Security Support, Latest. 18.2, 6 ...
Read more >What is ReactJS's support duration for LTS? - Stack Overflow
I'm trying to find the documentation for ReactJS LTS (long-term support), including duration and the versions currently supported.
Read more >React 16 - Mobify DevCenter
There are a lot of big changes with React 16 that require you to upgrade certain packages as well as your code in...
Read more >What's New in React 16 and Fiber Explanation | by Trey Huffine
Ability to yield back and forth between parents and children to support layout in React. Ability to return multiple elements from render() ....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@johnsonsamuel I ended up working around this by using https://github.com/sstur/react-rte as an editor and https://github.com/rexxars/react-markdown as the renderer. They’re both React first and have XSS safety unlike this module and https://github.com/andrerpena/react-mde
Seeing as this one’s not being maintained, the following might be a better option: https://github.com/andrerpena/react-mde
EDIT: Nevermind, I looked at the other one and get the idea that the developer is overengineering; it doesn’t seem to have much additional functionality, yet uses like 10 times as many files to do it. (and ~3 times as many lines) Probably better just to patch up this one.