import { CircleAlert, Undo } from "lucide-react"; import { Button } from "./ui/button"; import { useRouter } from "@tanstack/react-router"; import { SmartSearchBar } from "./smartSearchBar"; export default function ShowError({ error }: { error: Error }) { const router = useRouter(); return (
{error.message}
or
); }