Hella
A reactive framework for building fast, lightweight apps using fine-grained reactivity, without the complexity.
Zero Dependencies
TypeScript Ready
~3.5KB Gzipped
import { signal } from '@hellajs/core';
const Counter = () => {
const count = signal(0);
return (
<div class="p-6">
<h1>{count}</h1>
<button onClick={() => count(count() + 1)}>
Increment
</button>
</div>
);
};