WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto
4
fork

Configure Feed

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

at 376837dfe6e48bdaa00ecc9ee421ada7005ab85a 10 lines 307 B view raw
1import type { FC, PropsWithChildren } from "hono/jsx"; 2 3interface CardProps { 4 class?: string; 5} 6 7export const Card: FC<PropsWithChildren<CardProps>> = ({ children, class: className }) => { 8 const classes = ["card", className].filter(Boolean).join(" "); 9 return <div class={classes}>{children}</div>; 10};