# lit-html with support for Observables/Signals/Subscribables

## RxJS Observables

      import { html } from 'lit-signals';
      import { interval } from 'rxjs';
      
      html`<div>${inverval(1000)}</div>`
    
Result:

## Preact Signals

      import { html } from 'lit-signals';
      import { signal } from '@preact/signals-core';

      const count$ = signal(0);
      html`<input type="button" value=${count$} @click=${() => count$.value += 1}>`
    
Result: