Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 318 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 318 Bytes

Reactive framework for GUI (WIP)

Main idea is that you can embed reactive values into JSX and it will update automatically.

// reactive value
const count = State(0);
//...
<div>{count}</div>;

// in event handlers:

count.set(count.get() + 1);

Look into examples folder for more detailed example.