Skip to content

MettleApproachable, fast, flexible JavaScript library

Building user interfaces

Mettle
jsx
function Counter() {
  const count = signal(0);
  const add = () => count.value++;

  return <button onClick={add}>{count.value}</button>;
}

Released under the MIT License.