File size: 134 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 | 'use client'
export default function Error() {
return (
<div>
<h2 id="error">Something went wrong!</h2>
</div>
)
}
|
1e92f2d | 1 2 3 4 5 6 7 8 9 10 | 'use client'
export default function Error() {
return (
<div>
<h2 id="error">Something went wrong!</h2>
</div>
)
}
|