Skip to content

MettleApproachable, fast, flexible JavaScript library

Building user interfaces

Mettle
jsx
function Counter() {
  const count = signal(0);

  return <button onClick={() => count.value++}>{count}</button>;
}

Released under the MIT License.