interface ErrorDisplayProps { title: string; message: string; } export function ErrorDisplay({ title, message }: ErrorDisplayProps) { return ( <>

{title}

{message}

); }