UNPKG

dext5editor-react

Version:

React component for DEXT5 Editor

30 lines (25 loc) 630 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={{ DevelopLangage:'NONE' }} initData="<p>Hello <strong>DEXT5 Editor</strong> world!</p>" /> </section> <footer>{`Running React v${ React.version }`}</footer> </div> ); } export default App;