10 lines
150 B
TypeScript
10 lines
150 B
TypeScript
"use client"
|
|
|
|
export default function Error({ error }: { error: Error }) {
|
|
return (
|
|
<div>
|
|
<h2>Something went wrong!</h2>
|
|
</div>
|
|
)
|
|
}
|