link-stack/apps/link/app/(main)/tickets/[id]/error.tsx

12 lines
212 B
TypeScript
Raw Normal View History

2023-06-26 10:07:12 +00:00
"use client";
import { DisplayError } from "app/_components/DisplayError";
2023-06-26 10:07:12 +00:00
type PageProps = {
error: Error;
};
export default function Page({ error }: PageProps) {
return <DisplayError error={error} />;
}