/** @jsxImportSource hono/jsx */ export function FormAlert(props: { message?: string color?: "danger" | "success" }) { return (
{props.message}
) }