toes/apps/basic/index.tsx
2026-01-29 23:33:54 -08:00

11 lines
159 B
TypeScript

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