mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
10 lines
202 B
React
10 lines
202 B
React
![]() |
const Error404 = () => {
|
||
|
return (
|
||
|
<div className="error404">
|
||
|
<h3>Sorry, we couldn't find what you were looking for.</h3>
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
module.exports = Error404;
|
||
|
export default Error404;
|