lenML/ChatTTS-Forge
301
1import { h } from "preact";2import * as React from "preact/hooks";3import htm from "htm";4import { bindReact } from "@quik-fe/stand";5 6import * as goober from "goober";7 8goober.setup(h);9 10export const html = htm.bind(h);11export const create = bindReact(React);12 13/**14 * @type {Record<string, Function>}15 */16export const styled = new Proxy(17 {},18 {19 get: (target, key) => goober.styled.call({}, key),20 }21);22 