mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-01 22:10:27 +00:00
10 lines
348 B
TypeScript
10 lines
348 B
TypeScript
import { render } from 'react-dom';
|
|
import GeneralWorkbench from '@ali/lowcode-editor-preset-general';
|
|
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);
|