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 86198c615361a16efb35d7d2d2b4fa3a9b8353d2 13 lines 304 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}