mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
14 lines
No EOL
266 B
JavaScript
14 lines
No EOL
266 B
JavaScript
import React from 'react';
|
|
|
|
const Error404 = () => {
|
|
return (
|
|
<div className="error404">
|
|
<h3>Sorry, we couldn't find what you were looking for.</h3>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
Error404.displayName = "Error404";
|
|
|
|
module.exports = Error404;
|
|
export default Error404; |