Vulcan/packages/nova-base-components/lib/common/Error404.jsx
2016-03-30 09:25:25 +09:00

12 lines
No EOL
230 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>
)
}
module.exports = Error404;
export default Error404;