Skip to content

Instantly share code, notes, and snippets.

View etherik's full-sized avatar

Ethrik etherik

View GitHub Profile
@etherik
etherik / index.tsx
Last active March 6, 2024 01:02
Minimal example for invisible Button.Transaction
import { serveStatic } from '@hono/node-server/serve-static'
import { Button, Frog, TextInput } from 'frog'
export const app = new Frog({
// Supply a Hub API URL to enable frame verification.
// hubApiUrl: 'https://api.hub.wevm.dev',
})
app.use('/*', serveStatic({ root: './public' }))