UNPKG
cron-editor-react
Version:
latest (5.0.0)
5.0.0
基于antd、react的crontab表达式生成工具
github.com/tulaoda/cron-editor-react
tulaoda/cron-editor-react
cron-editor-react
/
test.js
6 lines
(5 loc)
•
182 B
JavaScript
View Raw
1
2
3
4
5
6
import
React
from
"react"
;
import
ReactDom
from
"react-dom"
;
import
Cron
from
"./src/index"
;
console
.
log
(
Cron
);
ReactDom
.
render
(
<
Cron
showRunTime
/>
,
document
.
getElementById
(
"app"
));