File size: 189 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
'use client'
export default function GlobalError() {
return (
<html>
<body>
<h1>Global Error</h1>
<p>This is a global error</p>
</body>
</html>
)
}
|