jrgt
v1.0.2
Published
## Install
Downloads
3
Readme
JRGT (JsonReact)
Install
$ bun add jrgt react
$ bun add -d tslib
Create Component
import jr from "jrgt";
function App() {
return jr.r([
{
div: {
className: "container",
children: "Hello, world!",
},
},
]);
}