import { h, Component } from 'preact'; import { onChangeEvent } from '../../util/event.js'; export default class TimeCondition extends Component { constructor() { super(); this.onChange = onChangeEvent.bind(this, 'condition'); } /* eslint-disable camelcase */ render({ condition }) { const { after, before } = condition; return (
); } } TimeCondition.defaultConfig = { };