mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-16 06:42:53 +00:00
25 lines
307 B
Markdown
25 lines
307 B
Markdown
---
|
|
title: Simple Usage
|
|
order: 1
|
|
---
|
|
|
|
本 Demo 演示一行文字的用法。
|
|
|
|
````jsx
|
|
import React, { Component } from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
|
|
class App extends Component {
|
|
render() {
|
|
return (
|
|
<div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
ReactDOM.render((
|
|
<App />
|
|
), mountNode);
|
|
````
|