commerce/app/error.tsx
2023-04-17 21:00:14 -05: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>
);
}