1.2.2 • Published 1 year ago

@rsh-axelor/timer-builder v1.2.2

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

Timer builder

Timer builder to generate ISO & Cron expressions

Installation

Available as a npm package.

with npm

$ npm install @rsh-axelor/timer-builder

with pnpm

$ pnpm install @rsh-axelor/timer-builder

Usage

import React from 'react';
import ReactDOM from 'react-dom';
import { TimerBuilder } from "@rsh-axelor/timer-builder";

function App() {
  return <TimerBuilder 
          value={value}
          timerDefinitionType="cron"
          onChange={handleChange} />;
}

ReactDOM.render(<App />, document.querySelector('#app'));