UNPKG

dext5editor-react

Version:

React component for DEXT5 Editor

33 lines (28 loc) 659 B
import React from 'react'; import { DEXT5Editor } from 'dext5editor-react'; /** * Basic raonwiz component integrations for react * * <DEXT5Editor id="editor1" componentUrl="/dext5editor/js/dext5editor.js" /> * */ function App() { return ( <div> <section> <DEXT5Editor debug={true} id="editor1" componentUrl="/dext5editor/js/dext5editor.js" config={{ Mode: "edit", SkinName: "blue" }} initData="<p>Hello <strong>DEXT5 Editor</strong> world!</p>" /> </section> <footer>{`Running React v${ React.version }`}</footer> </div> ); } export default App;