UNPKG
uicd
Version:
latest (1.0.7)
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
构建 Web 界面组件库 uic
.
uicd
/
dist
/
App.js
7 lines
(6 loc)
•
178 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
React
from
'react'
;
import
BttonDemo
from
'./components/button/bttonDemo'
;
function
App
(
) {
return
(
React
.
createElement
(
BttonDemo
,
null
)); }
export
default
App
;