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