1
0
Fork 0
mirror of https://codeberg.org/MarkusThielker/next-ory.git synced 2025-04-16 15:49:53 +00:00
next-ory/dashboard/src/components/error.tsx
2024-12-15 16:37:12 +01:00

13 lines
No EOL
334 B
TypeScript

interface ErrorDisplayProps {
title: string;
message: string;
}
export function ErrorDisplay({ title, message }: ErrorDisplayProps) {
return (
<>
<p className="text-3xl font-bold leading-tight tracking-tight">{title}</p>
<p className="text-lg font-light">{message}</p>
</>
);
}