The Counter
This example demonstrates how to create a signal and event listeners that update its state

the value is: 0

The Slider
This example show how to create child components and values with props to them. The slider is a child component that takes a signal to write a value to. The framework supports optional props. The progress is a percentence of the slider value and is made using a derived function from the signal and show the value halved.

the value is: 0

The Switch
This example shows how control flow works. A switch will handle whether ButtonA or ButtonB is shown

the value is: true

The Numeric Input
This example shows how to handle errors with an iput that only accept.

You entered 0

The Form
This example show how to handle a form There are 2 ways to handle the form. You can have an input to be fully managed by the state of the signal. This aproach with update to dom for every time a user types in the field. The second way to handle this case in the manual one. Here we update the value on the signal by clicking the submit button.

The name is: managed name

The List
this example shows how to iterate through a list of stuff and create the layout of a list
Dynamic Counter List