UNPKG
cron-editor-react-point
Version:
latest (5.0.2)
5.0.2
5.0.1
5.0.0
基于antd、react的crontab表达式生成工具
github.com/tulaoda/cron-editor-react
tulaoda/cron-editor-react
cron-editor-react-point
/
test.js
6 lines
(5 loc)
•
243 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
startPosition
=
'minute'
endPosition
=
'month'
tabType
=
'tabType'
showRunTime
/>
,
document
.
getElementById
(
"app"
));