commerce/app/[locale]/error.tsx
2023-05-03 09:58:35 +02:00

11 lines
214 B
TypeScript

'use client';
export default function Error({ reset }: { reset: () => void }) {
return (
<div>
<h2>Something went wrong.</h2>
<button onClick={() => reset()}>Try again</button>
</div>
);
}