Components
ELL uses modular components as the building blocks of your application. Create reusable elements with ell define
syntax.
ell define Button {
<button class="px-4 py-2 bg-indigo-600 text-white">
@text
</button>
}
Reactivity
Automatic reactivity tracking keeps your UI synchronized. ELL's system tracks dependencies and updates efficiently.
let count = 0;
count++; // Changes propagate automatically