11 lines
159 B
TypeScript
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
|