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

12 lines
217 B
TypeScript
Raw Normal View History

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