1import { type Hole, html } from '../lib/view'
2
3export function shell({ title, content }: { title: string; content: Hole }) {
4 return html`<html>
5 <head>
6 <title>${title}</title>
7 <link rel="stylesheet" href="/public/styles.css" />
8 </head>
9 <body>
10 ${content}
11 </body>
12 </html>`
13}