radi
Version:
**Radi** is a tiny javascript framework.
19 lines (13 loc) • 393 B
Markdown
`r` is a helper for `document.createElement` with couple of differences.
The basic idea is to simply create elements with `r` and mount them with `mount`, almost like you would do with plain JavaScript:
```js
import { r, mount } from 'radi';
const hello = r('h1', {}, 'Hello Radi!');
mount(hello, document.body);
```
```html
<body>
<h1>Hello Radi!</h1>
</body>
```