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

Error

{message}

); }