UNPKG
molibox-t
Version:
latest (0.0.2)
0.0.2
T ui component for react
github.com/molibox/molibox-t.git
molibox/molibox-t
molibox-t
/
demo
/
demolist
/
Demo1.js
17 lines
•
228 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/** * *
@title
这是标题 *
@description
这是描述 * */
import
React
, {
Component
}
from
'react'
;
class
Demo1
extends
Component
{
render
() {
return
(
<
div
>
欢迎使用 MOLIBOX DEMO 系统
</
div
>
) } }
export
default
Demo1