Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 386 Bytes

File metadata and controls

24 lines (20 loc) · 386 Bytes
title Simple Usage
order 1

本 Demo 演示一行文字的用法。

import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import LowcodeEngineExt from '@alilc/lowcode-engine-ext';

class App extends Component {
  render() {
    return (
      <div>
        <LowcodeEngineExt />
      </div>
    );
  }
}

ReactDOM.render(<App />, mountNode);