the statusphere demo reworked into a vite/react app in a monorepo
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at e8d1a84247244422437cd1416a85aa0ca2c8c606 13 lines 310 B view raw
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}