UNPKG

leumas-universal-crud-react

Version:

Leumas Universal CRUD to a dynamic Endpoint, Setup your own Dynamic Endpoint and Use Leumas API to send to your MONGO clusters

13 lines (9 loc) 455 B
import React from 'react'; import { diff as DiffEditor } from 'react-ace'; // Import the themes you plan to use. This list can be expanded based on your needs. import 'ace-builds/src-noconflict/theme-github'; import 'ace-builds/src-noconflict/mode-text'; // You might want to import other modes as well, as per the requirement. const DiffEditorWrapper = (props) => { return <DiffEditor {...props} />; }; export default DiffEditorWrapper;