9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
'use client'
|
|
export default function Error() {
|
|
return (
|
|
<div>
|
|
<h1>Something went wrong!</h1>
|
|
<p>Sorry, something went wrong.</p>
|
|
</div>
|
|
);
|
|
} |