import type { FC } from "hono/jsx"; interface ErrorDisplayProps { message: string; detail?: string; } export const ErrorDisplay: FC = ({ message, detail }) => (

{message}

{detail &&

{detail}

}
);