This is an open source project that builds a cron builder component for React applications.
It supports Quartz and Unix cron string formats for both input and output.
Inspired by this non-react implementation.
You can use either the npm or yarn command-line tool to install packages.npm install --save @sbzen/re-cron
Import and add the cron component into your jsx/tsx.
import React from 'react';import { ReQuartzCron, ReUnixCron } from '@sbzen/re-cron';const App = () => (<ReQuartzCron/>// or <ReUnixCron/>);export default App;
As a result you will have this widget