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