13 lines
229 B
TypeScript
13 lines
229 B
TypeScript
import "./style/standard.css"
|
|
|
|
|
|
function ErrorPage() {
|
|
return (
|
|
<div className="error-page">
|
|
<h1>Oops!</h1>
|
|
<p>Sorry, an unexpected error has occurred.</p>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default ErrorPage; |