source: src/app/error.tsx@ 87c9f1e

main
Last change on this file since 87c9f1e was 87c9f1e, checked in by Naum Shapkarovski <naumshapkarovski@…>, 5 weeks ago

update the seed script. update the prisma schema, use mapping

  • Property mode set to 100644
File size: 631 bytes
Line 
1'use client';
2
3import { useEffect } from 'react';
4
5export default function Error({
6 error,
7 reset,
8}: {
9 error: Error & { digest?: string };
10 reset: () => void;
11}) {
12 useEffect(() => {
13 // Log the error to your error reporting service
14 console.error(error);
15 }, [error]);
16
17 return (
18 <div className="flex min-h-screen flex-col items-center justify-center">
19 <h2 className="text-2xl font-bold mb-4">Something went wrong!</h2>
20 <button
21 className="px-4 py-2 bg-blue-500 text-white rounded hover:bg-blue-600"
22 onClick={() => reset()}
23 >
24 Try again
25 </button>
26 </div>
27 );
28}
Note: See TracBrowser for help on using the repository browser.