npm i simple-jsx-react --save
npx simple-jsx-react APP-NAME
cd APP-NAME
npm run dev
I have included a jquery-like way of selecting elements in the dom
import $ from "simple-jsx-react"
const body = $("body");
const root = $("#root");
const buttons = $("button");
const containers = $(".containers");