CoolFace
Apppublic

lenML/ChatTTS-Forge

sourceHugging Faceagpl-3.0updated 2y agoView on Hugging Face
301likes
misc.mjs22 linesDownload Raw Back to playground
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