Something went wrong. Try again.
Scratch space for learning atproto app development
Something went wrong. Try again.
310 B · 13 lines
TypeScript
at main
1234567891011121314import { type Hole, html } from '../lib/view'
export function shell({ title, content }: { title: string; content: Hole }) { return html`<html> <head> <title>${title}</title> <link rel="stylesheet" href="/public/styles.css" /> </head> <body> ${content} </body> </html>`}