mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
19 lines
447 B
TypeScript
19 lines
447 B
TypeScript
import React from "react";
|
|
|
|
export default function FourOhFour(): JSX.Element {
|
|
return (
|
|
<div className="page__wrapper">
|
|
<div className="page__content">
|
|
<h1>404</h1>
|
|
<p>
|
|
Looks like the page you are looking for doesn't exist. Please try
|
|
again.
|
|
</p>
|
|
<a href="https://refine.dev" target="_blank" rel="noreferrer">
|
|
Visit Refine
|
|
</a>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|