Files
Frontend/src/app/components/error-card.tsx
Liam ac1d9b4f82
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m25s
fix return types
2024-04-18 03:51:41 +01:00

18 lines
380 B
TypeScript

import { ReactElement } from "react";
import { Card } from "./card";
type ErrorProps = {
message: string;
};
export function ErrorCard({ message }: ErrorProps): ReactElement {
return (
<Card>
<div className="flex flex-col justify-center text-center">
<h1 className="text-xl text-red-400">Error</h1>
<p>{message}</p>
</div>
</Card>
);
}