import { ReactElement } from "react"; import { Card } from "./card"; type ErrorProps = { message: string; }; export function ErrorCard({ message }: ErrorProps): ReactElement { return (

Error

{message}

); }