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
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};