© 2026 Hedgehog Software, LLC
function div(){ const props = {} function createChainable(obj: any = {}){ return new Proxy(() => obj, { get: (target, prop) => { return (value) => { props[prop] = value; return createChainable(props); } }, apply: () => { return createElement("div", props); } }) } return createChainable(); } div().className("mx-auto").children("sick").ok("wow")()
JSX.IntrinsicElements["div"]
div().className("p-4")()