mirror of
https://github.com/rowyio/rowy.git
synced 2025-12-28 16:06:41 +01:00
11 lines
270 B
TypeScript
11 lines
270 B
TypeScript
import React, { Component } from "react";
|
|
import { GEditor } from "grapesjs-react";
|
|
import "grapesjs/dist/css/grapes.min.css";
|
|
class GEditorExample extends Component {
|
|
render() {
|
|
return <GEditor id="editor" webpage={true} />;
|
|
}
|
|
}
|
|
|
|
export default GEditorExample;
|