Can't use editor according to the demo
desc
I saw this editor from antd docs, so I npm install react-lz-editor --save and tried in my project, but this did not work.
It seemed I haven't pass the props right, but whatever I tried, it always showing the same error.
my project ejected from 'create-react-app'
os: win7
error

code
import React, {Component} from 'react'
import {LzEditor} from 'react-lz-editor'
export default class Article extends Component {
constructor(props) {
super(props)
}
render() {
return (
<LzEditor />
)
}
}
dependencies
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-lz-editor": "^0.11.6",
"antd": "^2.13.10",
Sorry about this bug, I have fixed it and will publish to npm. PropTypes is no longer supported and has been removed, this is why the bug appears. Pls refs: https://reactjs.org/warnings/dont-call-proptypes.html
Hi @MikeMiller3 , I have released a new version 0.11.7 on npm, could you please upgrade and try it again? Thank you!
@leejaen It works , thank you !