diff --git a/dashboard/src/components/error.tsx b/dashboard/src/components/error.tsx new file mode 100644 index 0000000..e264180 --- /dev/null +++ b/dashboard/src/components/error.tsx @@ -0,0 +1,13 @@ +interface ErrorDisplayProps { + title: string; + message: string; +} + +export async function ErrorDisplay({ title, message }: ErrorDisplayProps) { + return ( +
{title}
+{message}
+