We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
currently calling "new" on an export class is tricky implementation is rudimentary now, but could offer more flexability?
could convert this anon onClick prop to string?
import { Fragment } from "preact"; import { HTMX, HTMXComponents } from "../mod.tsx"; const { component, serve, routes, clientImport } = new HTMXComponents('@reggi/client-code') const multi = await clientImport('./client_code/multi.ts') export const OnClick = component('/client-code-on-click', () => { return ( <Fragment> <HTMX.div onClick={() => { const x = new multi.Dog() console.log(x.name) }}>Do something else</HTMX.div> </Fragment> ) }) if (!Deno.env.get('NO_SERVE')) { await serve() } export { routes }
The text was updated successfully, but these errors were encountered:
maybe all people need is the functions they export, if you need anything more do it in client files this is silly.
Sorry, something went wrong.
No branches or pull requests
currently calling "new" on an export class is tricky implementation is rudimentary now, but could offer more flexability?
could convert this anon onClick prop to string?
The text was updated successfully, but these errors were encountered: