rvx
Version:
A signal based rendering library
19 lines (12 loc) • 362 B
Markdown
This project is licensed under the [GNU Affero General Public License v3.0](./LICENSE).

This is a signal based frontend framework.
```jsx
import { $, mount } from "rvx";
const count = $(0);
<button on:click={() => { count.value++ }}>
Clicked {count} times
</button>
```