Scratch space for learning atproto app development
1import { type Hole, html } from '../view' 2 3export function shell({ title, content }: { title: string; content: Hole }) { 4 return html`<html> 5 <head> 6 <title>${title}</title> 7 </head> 8 <body> 9 ${content} 10 </body> 11 </html>` 12}