the statusphere demo reworked into a vite/react app in a monorepo
at 5f7614a41458694dbe27e96c19e8b7763b17e026 13 lines 306 B view raw
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 <link rel="stylesheet" href="/public/styles.css" /> 8 </head> 9 <body> 10 ${content} 11 </body> 12 </html>` 13}