import { h, Component } from 'preact'; import { onChangeEvent } from '../../common/preact/event.js'; export default class DelayAction extends Component { constructor() { super(); this.onChange = onChangeEvent.bind(this, 'action'); } render({ action, localize }) { const { delay } = action; return (
); } } DelayAction.defaultConfig = { delay: '', };