mount
import { signal } from '@hellajs/core';import { mount } from '@hellajs/dom';
const Counter = () => { const count = signal(0);
return ( <button onclick={increment}>{count}</button> );};
// Mount the Appmount(Counter, '#counter');