toes/apps/basic/20260130-000000/index.tsx
2026-02-04 09:51:29 -08:00

12 lines
193 B
TypeScript

import { Hype } from '@because/hype'
const app = new Hype
app.get('/', c => c.html(<h1>Hi there!</h1>))
app.get('/ok', c => c.text('ok'))
const apps = () => {
}
export default app.defaults