proje / apps /web /src /app /(dashboard) /error.tsx
rodopsin
Initial commit: AJet360 dummy prototype
d34aa41
Raw
History Blame Contribute Delete
242 Bytes
'use client';
import { ErrorBoundary } from '@/components/shared/ErrorBoundary';
export default function ErrorPage({
error,
reset,
}: {
error: Error;
reset: () => void;
}) {
return <ErrorBoundary error={error} reset={reset} />;
}