import Link from "next/link"; export default function ExportError({ message }: { message: string }) { return (
{message}
Go to home
); }