import { ComponentChildren } from "preact"; interface CardProps { title: string; imageUrl?: string; children: ComponentChildren; } export default function Card({ title, children, imageUrl }: CardProps) { return (
{imageUrl && }

{title}
{children}

) }