mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-03 07:47:18 +00:00
10 lines
360 B
TypeScript
10 lines
360 B
TypeScript
import { render } from 'react-dom';
|
|
import GeneralWorkbench, { editor } from '../../../editor-preset-general/src';
|
|
import config from './config';
|
|
import components from './components';
|
|
import './global.scss';
|
|
|
|
const LCE_CONTAINER = document.getElementById('lce-container');
|
|
|
|
render(<GeneralWorkbench config={config} components={components} />, LCE_CONTAINER);
|