// components/NotFoundCard.tsx import { BackHistoryButton } from "@repo/rdx-ui/components"; interface NotFoundCardProps { title: string; message: string; } export const NotFoundCard = ({ title, message }: NotFoundCardProps) => ( <>
{message}