zhzluke96
update
01e655b
raw
history blame contribute delete
No virus
411 Bytes
import { h } from "preact";
import * as React from "preact/hooks";
import htm from "htm";
import { bindReact } from "@quik-fe/stand";
import * as goober from "goober";
goober.setup(h);
export const html = htm.bind(h);
export const create = bindReact(React);
/**
* @type {Record<string, Function>}
*/
export const styled = new Proxy(
{},
{
get: (target, key) => goober.styled.call({}, key),
}
);