import { ComponentChildren } from "preact"; interface AlertProps { type: "info" | "danger" | "warning"; title?: string; children: ComponentChildren; } export default function Alert({ title, type, children }: AlertProps) { return (
{title &&

{title}

} {children}
); }