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

{title}
{children}

) }