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

9 lines
173 B
TypeScript

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