我正在尝试将 GrapesJS 功能与我的 React APP 集成。
I get an error while implementing like `Uncaught TypeError: Cannot read property 'forEach' of undefined grapesjs react`
I would like to have a feature like in this URL
https://grapesjs.com/demo.html
npm i grapesjs-react
import React, {Component} from 'react';
import GEditor from 'grapesjs-react';
class GEditorExample extends Component {
render() {
return (
<GEditor/>
);
}
}
export default GEditorExample;
- 如何为我的 react 应用程序获取此功能以构建 HTML Web Builder。
任何帮助都会很棒。谢谢你。*