Solimando Damien

Results 2 issues of Solimando Damien

* TS migration * allow to use template string to customise counter display * allow conditional styling by passing function as style prop

```import { html, component, useState } from 'https://cdn.pika.dev/haunted'; function App({ firstName }) { return `Hello ${firstName}!`; } customElements.define( 'my-alt', component(App, { observedAttributes: ['first-name'] }) ); document.querySelector('my-alt').setAttribute('first-name','Bart') ``` I expect component...